Optimize common special case alignSize(2)
Optimize common special case alignSize(4)
0-fill to align on power of 2 boundary.
Append nbytes of 0 to the internal buffer.
Append output of C's printf() to internal buffer.
Preallocate nbytes more to the size of the internal buffer.
At offset index into buffer, create nbytes of space by shifting upwards all data past index.
Convert to array
Convert internal buffer to array of chars.
Append output of C's vprintf() to internal buffer.
Append data to the internal buffer.
OutBuffer provides a way to build up an array of bytes out of raw data. It is useful for things like preparing an array of bytes to write out to a file. OutBuffer's byte order is the format native to the computer. To control the byte order (endianness), use a class derived from OutBuffer.