CountingWriter

Sink which simply counts how much data is written to it.

struct CountingWriter (
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

count
size_t count;

Number of elements written.

Meta