# README
json-iterator-lite
json-iterator is an alternative to encoding/json which does not use reflection.
This is a fork of the upstream project with everything that depends on reflection removed
Attribution
Contributors
Report issue or pull request, or email [email protected], or
License
MIT
# Packages
No description provided by the author
# Functions
NewIterator creates an empty Iterator instance.
NewStream create new stream instance.
Parse creates an Iterator instance from io.Reader.
ParseBytes creates an Iterator instance from byte array.
ParseString creates an Iterator instance from string.
# Constants
ArrayValue JSON element [].
BoolValue JSON element true or false.
InvalidValue invalid JSON element.
NilValue JSON element null.
NumberValue JSON element 100 or 0.10.
ObjectValue JSON element {}.
StringValue JSON element "string".
# Type aliases
ValueType the type for JSON element.