W3cubDocs

/C++

std::streamsize

Defined in header <ios>
typedef /*implementation-defined*/ streamsize;

The type std::streamsize is an implementation-defined signed integral type used to represent the number of characters transferred in an I/O operation or the size of an I/O buffer. It is used as a signed counterpart of std::size_t, similar to the POSIX type ssize_t.

Except in the constructors of std::strstreambuf, negative values of std::streamsize are never used.

See also

returns number of characters extracted by last unformatted input operation
(public member function of std::basic_istream<CharT,Traits>)
extracts and discards characters until the given character is found
(public member function of std::basic_istream<CharT,Traits>)
extracts blocks of characters
(public member function of std::basic_istream<CharT,Traits>)
inserts blocks of characters
(public member function of std::basic_ostream<CharT,Traits>)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/io/streamsize