Tools.h++ Manual

21-158 104011 Tandem Computers Incorporated
21
virtual RWvostream& operator<<(unsigned int i);
Redefined from class
RWvostream
. Store the unsigned int
i
to the output
stream using a portable format.
virtual RWvostream& operator<<(long l);
Redefined from class
RWvostream
. Store the long
l
to the output stream using
a portable format.
virtual RWvostream& operator<<(unsigned long l);
Redefined from class
RWvostream
. Store the unsigned long
l
to the output
stream using a portable format.
virtual RWvostream& operator<<(short s);
Redefined from class
RWvostream
. Store the short
s
to the output stream
using a portable format.
virtual RWvostream& operator<<(unsigned short s);
Redefined from class
RWvostream
. Store the unsigned short
s
to the output
stream using a portable format.
virtual RWvostream& put(char c);
Redefined from class
RWvostream
. Store the
char c
to the output stream,
preserving its value using a portable format.
virtual RWvostream& put(unsigned char c);
Redefined from class
RWvostream
. Store the
unsigned charc
to the output
stream, preserving its value using a portable format.
virtual RWvostream& put(const char* p, size_t N);
Redefined from class
RWvostream
. Store the vector of
chars
starting at
p
to
the output stream, preserving their values using a portable format.
Note – the characters will be treated as literal numbers (i.e., not as a character
string).
virtual RWvostream& put(const wchar_t* p, size_t N);
Redefined from class
RWvostream
. Store the vector of wide
chars
starting at
p
to the output stream, preserving their values using a portable format.
Note – the characters will be treated as literal numbers (i.e., not as a character
string).