Struct JSONParserRange

Lazy input range of JSON parser nodes.

struct JSONParserRange(Input)
  
if (isJSONTokenInputRange!Input);

See parseJSONStream for more information.

Constructors

NameDescription
this Constructs a new parser range.

Properties

NameTypeDescription
empty[get] boolDetermines of the range has been exhausted.
front[get] const(JSONParserNode!String)Returns the current node from the stream.

Methods

NameDescription
popFront Skips to the next node in the stream.