Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::ios_base::unsetf(3)      C++ Standard Libary     std::ios_base::unsetf(3)

NAME
       std::ios_base::unsetf - std::ios_base::unsetf

Synopsis
	  void unsetf( fmtflags	flags );

	  Unsets the formatting	flags identified by flags.

Parameters
		  formatting  flags  to	 unset.	It can be a combination	of the
       following
		  constants:

		  Constant    Explanation
		  dec	      use decimal base for integer I/O:	see std::dec
		  oct	      use octal	base for integer I/O: see std::oct
		  hex	       use  hexadecimal	 base  for  integer  I/O:  see
       std::hex
		  basefield   dec|oct|hex. Useful for masking operations
		  left	       left  adjustment	 (adds	fill characters	to the
       right): see
			      std::left
		  right	      right adjustment (adds fill  characters  to  the
       left): see
			      std::right
		  internal    internal adjustment (adds	fill characters	to the
       internal
			      designated point): see std::internal
		  adjustfield  left|right|internal.  Useful for	masking	opera-
       tions
		  scientific  generate floating	point types  using  scientific
       notation, or hex
	  flags	-	      notation if combined with	fixed: see std::scien-
       tific
		  fixed	       generate	floating point types using fixed nota-
       tion, or	hex
			      notation	if  combined  with   scientific:   see
       std::fixed
		  floatfield  scientific|fixed.	Useful for masking operations
		  boolalpha    insert  and  extract  bool type in alphanumeric
       format: see
			      std::boolalpha
			      generate a prefix	indicating  the	 numeric  base
       for integer
		  showbase     output, require the currency indicator in mone-
       tary I/O: see
			      std::showbase
		  showpoint   generate a decimal-point character  uncondition-
       ally for
			      floating-point number output: see	std::showpoint
		  showpos      generate	a + character for non-negative numeric
       output: see
			      std::showpos
		  skipws      skip leading whitespace before certain input op-
       erations: see
			      std::skipws
		  unitbuf     flush the	output after  each  output  operation:
       see std::unitbuf
		  uppercase   replace certain lowercase	letters	with their up-
       percase
			      equivalents  in  certain	output operations: see
       std::uppercase

Return value
	  (none)

Example
	   This	section	is incomplete
	   Reason: no example

See also
	  flags	manages	format flags
		(public	member function)
	  setf	sets specific format flag
		(public	member function)

http://cppreference.com		  2022.07.31	      std::ios_base::unsetf(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::ios_base::unsetf&sektion=3&manpath=FreeBSD+Ports+15.0>

home | help