Returns a new Output
that appends bytes to a growable array,
pre-allocated with space for initialCapacity
bytes, if initialCapacity
is defined, using the given settings
, if settings
is defined. The
returned Output
accepts an unbounded number of bytes, remaining
permanently in the cont state, and can bind a
Uint8Array
with the current output state at any time.
Returns a new Output
that appends bytes to a growable array, using the
given settings
. The returned Output
accepts an unbounded number of
bytes, remaining permanently in the cont state, and can bind a Uint8Array
array with the current output state at any time.
Byte Input/Output factory.
The
Binary.uint8ArrayOutput(...)}
function returns anOutput
that writes bytes to a growable array, and binds aUint8Array
containing all written bytes.