Categorygithub.com/aperturerobotics/json-iterator-lite

# README

json-iterator-lite

GoDoc Widget Go Report Card Widget

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 Gitter chat

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".

# Structs

Iterator is a io.Reader like object, with JSON specific read functions.
stream is a io.Writer like object, with JSON specific write functions.

# Type aliases

ValueType the type for JSON element.