BlindWriter

Sink which simply copies data to a pointer and advances it. No reallocation, no bounds check - unsafe.

struct BlindWriter (
T
) {}

Members

Functions

put
void put(T[] v)
Undocumented in source. Be warned that the author may not have intended to support it.
put
void put(T v)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

ptr
T* ptr;

Write target.

Meta