OMemStream.eof

Check if the stream had ended

struct OMemStream
@property @nogc @safe nothrow
bool
eof
()

Examples

ubyte[1] data = [13];
auto stream = OMemStream(data);
stream.read!ubyte;
assert(stream.eof);

Meta