VoidBufferImpl

Undocumented in source.

Members

Functions

opApply
int opApply(int delegate(ref Const!(ubyte)) dg)

Buffer element iteration

opApply
int opApply(int delegate(ref size_t, ref Const!(ubyte)) dg)

Buffer element iteration (with index)

opAssign
void opAssign(void[] rhs)

Assigns data to stored data from other slice

opCatAssign
void opCatAssign(ubyte rhs)
void opCatAssign(ubyte[] rhs)

Appends to current buffer

opIndex
ubyte* opIndex(size_t i)

Individual element access.

opIndexAssign
void opIndexAssign(ubyte value, size_t i)

Invidual element assignment

opSliceAssign
void opSliceAssign(void[] rhs, ptrdiff_t begin, ptrdiff_t end)

Assigns data to stored data from other slice

Meta