Method NullOutputStream.write
Overload group
bytes
to the stream.Prototypes
void write( const(ubyte[]) bytes, bool do_flush );
Overload group
InputStream
directly into this OutputStream
. The number of bytes written is either the whole input stream
when nbytes
== 0, or exactly
nbytes
for nbytes
> 0. If the input stream
contains less than nbytes
of data, an exception
is thrown.
Prototypes
void write( InputStream stream, ulong nbytes, bool do_flush );
Overload group
Prototypes
void write( const(char[]) bytes, bool do_flush );
Authors
Sönke Ludwig
Copyright
© 2012 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.