var bufferedEncoderPool …
var streamingEncoderPool …
var bytesBufferEncoderPool …
type bufferStatistics …
func getBufferedEncoder(o EncodeOptions) *Encoder { … }
func putBufferedEncoder(e *Encoder) { … }
func getStreamingEncoder(w io.Writer, o EncodeOptions) *Encoder { … }
func putStreamingEncoder(e *Encoder) { … }
var bufferedDecoderPool …
var streamingDecoderPool …
var bytesBufferDecoderPool …
func getBufferedDecoder(b []byte, o DecodeOptions) *Decoder { … }
func putBufferedDecoder(d *Decoder) { … }
func getStreamingDecoder(r io.Reader, o DecodeOptions) *Decoder { … }
func putStreamingDecoder(d *Decoder) { … }
var stringsPools …
type stringSlice …
func getStrings(n int) *stringSlice { … }
func putStrings(s *stringSlice) { … }
func (ss *stringSlice) Sort() { … }
func (ss *stringSlice) Len() int { … }
func (ss *stringSlice) Less(i, j int) bool { … }
func (ss *stringSlice) Swap(i, j int) { … }