1 // Package jsonstream provides a fast streaming JSON encoding and decoding mechanism. 2 // 3 // The base package is empty; see the jreader and jwriter subpackages. 4 // 5 // In the default implementation, these packages have no external dependencies. Setting the build 6 // tag "launchdarkly_easyjson" causes them to use https://github.com/mailru/easyjson as the 7 // underlying reader/writer implementation. 8 // 9 // For more information, see: https://github.com/launchdarkly/go-jsonstream 10 package jsonstream 11