# Functions
Marshal returns the JSON encoding of v.
MarshalIndent returns the JSON encoding of v with indentation.
MarshalToString returns the JSON encoding of v as a string.
New returns a new JSON implementation based on the configuration.
NewDecoder returns a new json decoder that reads from r.
NewEncoder returns a new json encoder that writes to w.
NewWithLibrary returns a new JSON implementation based on the library.
Reset resets the default JSON implementation based on the default configuration.
Unmarshal parses the JSON-encoded data and stores the result in the value pointed to by v.
# Constants
DefaultLib is the default JSON implementation.
JsoniterLib is the JSON implementation of github.com/json-iterator/go.
SonnetLib is the JSON implementation of github.com/sugawarayuuta/sonnet.
StdLib is the JSON implementation of package/json.
# Variables
No description provided by the author
# Interfaces
Decoder is the interface that wraps the basic JSON decoder operations.
Encoder is the interface that wraps the basic JSON encoder operations.
JSON is the interface that wraps the basic JSON operations.
No description provided by the author
No description provided by the author