vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

Class MemoryOutputStream

OutputStream that collects the written data in memory and allows to query it as a byte array.

class MemoryOutputStream
  : OutputStream ;

Properties

NameTypeDescription
data[get] ubyte[]An array with all data written to the stream so far.

Methods

NameDescription
finalize ()
flush ()
reserve (nbytes) Reserves space for data - useful for optimization.
reset (mode) Resets the stream to its initial state containing no data.
write (bytes_, mode) Writes an array of bytes to the stream.
finalize () Flushes and finalizes the stream.
flush () Flushes the stream and makes sure that all data is being written to the output device.
write (bytes) Writes an array of bytes to the stream.

Aliases

NameDescription
write
Authors

Sönke Ludwig

Copyright

© 2012-2016 Sönke Ludwig

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.