Tools.h++ Manual
104011 Tandem Computers Incorporated 21-159
21
virtual RWvostream& put(const unsigned char* p,
size_t N);
Redefined from class
RWvostream
. Store the vector of unsigned chars starting
at
p
to the output stream using a portable format. The characters should be
treated as literal numbers (i.e., not as a character string).
virtual RWvostream& put(const short* p, size_t N);
Redefined from class
RWvostream
. Store the vector of shorts starting at
p
to
the output stream using a portable format.
virtual RWvostream& put(const unsigned short* p,
size_t N);
Redefined from class
RWvostream
. Store the vector of unsigned shorts
starting at
p
to the output stream using a portable format.
virtual RWvostream& put(const int* p, size_t N);
Redefined from class
RWvostream
. Store the vector of ints starting at
p
to the
output stream using a portable format.
virtual RWvostream& put(const unsigned int* p,
size_t N);
Redefined from class
RWvostream
. Store the vector of unsigned ints starting
at
p
to the output stream using a portable format.
virtual RWvostream& put(const long* p, size_t N);
Redefined from class
RWvostream
. Store the vector of longs starting at
p
to
the output stream using a portable format.
virtual RWvostream& put(const unsigned long* p,
size_t N);
Redefined from class
RWvostream
. Store the vector of unsigned longs starting
at
p
to the output stream using a portable format.
virtual RWvostream& put(const float* p, size_t N);
Redefined from class
RWvostream
. Store the vector of floats starting at
p
to
the output stream using a portable format.
virtual RWvostream& put(const double* p, size_t
N);
Redefined from class
RWvostream
. Store the vector of doubles starting at
p
to
the output stream using a portable format.