Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Specifies that variables of type bool appear as 1 or 0 in the stream.
ios
_
base& noboolalpha(
ios_base& _Str
);
- _Str
A reference to an object of type ios_base, or to a type that inherits from ios_base.
A reference to the object from which _Str is derived.
By default, noboolalpha is in effect.
noboolalpha effectively calls _Str.unsetf(ios_base::boolalpha), and then returns _Str.
boolalpha reverses the effect of noboolalpha.
See boolalpha for an example of using noboolalpha.
Header: <ios>
Namespace: std