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

FreeBSD Manual Pages

  
 
  

home | help
std::basic_filebuf::uflow(3)  C++ Standard Libary std::basic_filebuf::uflow(3)

NAME
       std::basic_filebuf::uflow - std::basic_filebuf::uflow

Synopsis
	  protected:
	  virtual int_type uflow()

	  Behaves  like	 the  underflow(), except that if underflow() succeeds
       (does not return
	  Traits::eof()), then advances	the next pointer for the get area.  In
       other words,
	  consumes one of the characters obtained by underflow().

Parameters
	  (none)

Return value
	  The  value  of  the  character that was read and consumed in case of
       success,	or
	  Traits::eof()	in case	of failure.

Example
	   This	section	is incomplete
	   Reason: no example

See also
	  uflow	    reads characters from the associated input sequence	to the
       get area	and
	  [virtual] advances the next pointer
		    (virtual protected member function	of  std::basic_stream-
       buf<CharT,Traits>)
	  underflow reads from the associated file
	  [virtual] (virtual protected member function)
	  overflow  writes characters to the associated	file from the put area
	  [virtual] (virtual protected member function)

http://cppreference.com		  2022.07.31	  std::basic_filebuf::uflow(3)

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

home | help