Encoder.writeBytes - multiple declarations
Function Encoder.writeBytes
Write a byte string.
abstract void writeBytes
(
const(ubyte[]) bytes,
ulong start,
ulong len
) @safe;
Throws
AvroTypeException If this is a stateful writer and a byte-string is not expected
Function Encoder.writeBytes
Writes a byte string. Equivalent to writeBytes(bytes, 0, bytes
void writeBytes
(
const(ubyte[]) bytes
) @safe;
Throws
AvroTypeException If this is a stateful writer and a byte-string is not expected