The data to construct the IOBuffer with.
If data is a number, it will be the new buffer's length
If data is undefined
, the buffer will be initialized with a default length of 8Kb
If data is an ArrayBuffer, SharedArrayBuffer, an ArrayBufferView (Typed Array), an IOBuffer instance,
or a Node.js Buffer, a view will be created over the underlying ArrayBuffer.
An object for the options.
A new IOBuffer instance.
Reference to the internal ArrayBuffer object.
Byte length of the internal ArrayBuffer.
Byte offset of the internal ArrayBuffer.
Byte length of the internal ArrayBuffer.
The current offset of the buffer's pointer.
Read the next n
bytes, return a string decoded with encoding
and move pointer
forward by n
bytes.
If no encoding is passed, the function is equivalent to
Number of bytes to read.
The encoding to use. Default is 'utf8'.
The decoded string.
Make sure the buffer has sufficient memory to write a given byteLength at the current pointer offset. If the buffer's memory is insufficient, this method will create a new buffer (a copy) with a length that is twice (byteLength + current offset).
The needed memory in bytes.
This.
Creates an array of corresponding to the type type
and size size
.
For example type uint8
will create a Uint8Array
.
size of the resulting array
number type of elements to read
The read array.
Alias for IOBuffer#readUint8.
The read byte.
An alias for IOBuffer#writeUint8.
The value to write.
This.
Create a new IOBuffer.