Function createMemoryStream
Creates a new stream with the given data array as its contents.
MemoryStream createMemoryStream
(
ubyte[] data,
bool writable = true,
ulong initial_size = 18446744073709551615LU
) nothrow @safe;
Parameters
Name | Description |
---|---|
data | The data array |
writable | Flag that controls whether the data array may be changed |
initial_size | The initial value that size returns - the file can grow up to data.length in size |