OutputStream.write - multiple declarations
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
- Function OutputStream.write
Function OutputStream.write
Writes an array of bytes
to the stream.
Prototype
abstract void write(
const(ubyte[]) bytes
);
Function OutputStream.write
Writes an array of chars to the stream.
Prototype
final abstract void write(
const(char[]) bytes
);
Function OutputStream.write
Pipes an 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.
Prototype
abstract void write(
InputStream stream,
ulong nbytes = 0LU
);
Function OutputStream.write
Writes an array of chars to the stream.
Prototype
final abstract void write(
const(char[]) bytes
);
Function OutputStream.write
Writes an array of bytes
to the stream.
Prototype
abstract void write(
const(ubyte[]) bytes
);
Function OutputStream.write
Writes an array of chars to the stream.
Prototype
final abstract void write(
const(char[]) bytes
);
Function OutputStream.write
Pipes an 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.
Prototype
abstract void write(
InputStream stream,
ulong nbytes = 0LU
);
Function OutputStream.write
Writes an array of bytes
to the stream.
Prototype
abstract void write(
const(ubyte[]) bytes
);
Function OutputStream.write
Writes an array of chars to the stream.
Prototype
final abstract void write(
const(char[]) bytes
);
Function OutputStream.write
Pipes an 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.
Prototype
abstract void write(
InputStream stream,
ulong nbytes = 0LU
);
Function OutputStream.write
Writes an array of bytes
to the stream.
Prototype
abstract void write(
const(ubyte[]) bytes
);
Function OutputStream.write
Writes an array of chars to the stream.
Prototype
final abstract void write(
const(char[]) bytes
);
Function OutputStream.write
Pipes an 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.
Prototype
abstract void write(
InputStream stream,
ulong nbytes = 0LU
);
Authors
Sönke Ludwig
Copyright
© 2012-2015 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.