Standard C++ Library Reference ISO/IEC (VERSION3)

streamsize
typedef T2 streamsize;
The type is a signed integer type T3 that describes an object that can store a count of the number of
elements involved in various stream operations. Its representation has at least 16 bits. It is not
necessarily large enough to represent an arbitrary byte position within a stream.
unitbuf
ios_base& unitbuf(ios_base& iosbase);
The manipulator effectively calls iosbase.setf(ios_base:: unitbuf), then returns
iosbase.
uppercase
ios_base& uppercase(ios_base& iosbase);
The manipulator effectively calls iosbase.setf(ios_base:: uppercase), then returns
iosbase.
wios
typedef basic_ios<wchar_t, char_traits<wchar_t> > wios;
The type is a synonym for template class basic_ios, specialized for elements of type wchar_t
with default character traits.
wstreampos
typedef fpos<mbstate_t> wstreampos;
The type is a synonym for fpos< mbstate_t>.
See also the Table of Contents and the Index.
Copyright © 1992-2001 by P.J. Plauger. All rights reserved.