JSONParserRange

Lazy input range of JSON parser nodes.

See parseJSONStream for more information.

Constructors

this
this(Input input)

Constructs a new parser range.

Members

Aliases

String
alias String = typeof(Input.front).String
Undocumented in source.

Functions

popFront
void popFront()

Skips to the next node in the stream.

Properties

empty
bool empty [@property getter]

Determines of the range has been exhausted.

front
const(JSONParserNode!String) front [@property getter]

Returns the current node from the stream.

Meta