Compressor& operator <<(const char& x); |
Writes a single 8-bit character to the internal buffer.
|
Compressor& operator <<(const unsigned char& x); |
Writes a single 8-bit unsigned character to the internal buffer.
|
Compressor& operator <<(const short& x); |
Writes a single 16-bit integer to the internal buffer.
|
Compressor& operator <<(const unsigned short& x); |
Writes a single 16-bit unsigned integer to the internal buffer.
|
Compressor& operator <<(const long& x); |
Writes a single 32-bit integer to the internal buffer.
|
Compressor& operator <<(const unsigned long& x); |
Writes a single 32-bit unsigned integer to the internal buffer.
|
Compressor& operator <<(const long64& x); |
Writes a single 64-bit integer to the internal buffer.
|
Compressor& operator <<(const ulong64& x); |
Writes a single 64-bit unsigned integer to the internal buffer.
|
Compressor& operator <<(const float& x); |
Writes a single 32-bit floating-point value to the internal buffer.
|
Compressor& operator <<(const Vector2D& v); |
Writes two 32-bit floating-point values to the internal buffer from the vector v.
|
Compressor& operator <<(const Vector3D& v); |
Writes three 32-bit floating-point values to the internal buffer from the vector v.
|
Compressor& operator <<(const Vector4D& v); |
Writes four 32-bit floating-point values to the internal buffer from the vector v.
|
Compressor& operator <<(const Quaternion& q); |
Writes four 32-bit floating-point values to the internal buffer from the quaternion q.
|
Compressor& operator <<(const ColorRGB& c); |
Writes three 32-bit floating-point values to the internal buffer from the color c.
|
Compressor& operator <<(const ColorRGBA& c); |
Writes four 32-bit floating-point values to the internal buffer from the color c.
|
Compressor& operator <<(const char *text); |
Writes a null-terminated text string to the internal buffer.
|