OMemStream.this

Constructs new output memory stream from data

struct OMemStream
@safe @nogc nothrow
this
(
ubyte[] data
)

Examples

ubyte[4] data = [0, 0, 0, 0];
const stream = OMemStream(data);

Meta