ParseResult

Result of the parse functions

struct ParseResult (
T
) {}

Members

Functions

opCast
bool opCast()

Checks if some data was actually parsed from the input

Variables

count
size_t count;

Number of characters consumed while parsing (0 means that input couldn't be parsed into specified type)

data
T data;

parsed value

Meta