objconv
objconv copied to clipboard
A Go package exposing encoder and decoders that support data streaming to and from multiple formats.
This test tries to deserialize JSON input into a struct which embeds another. There are two parts to this test: 1. use normal encoding/json 2. use objconv/json The test fails...
This adds a new `objconvgen` entrypoint that generates a optimized decoder for a specific type. Since the decoder doesn't need to use reflection and can return all results by-value, it...
Going along with #12, it seems logical to support these as well to make a drop-in replacement for `encoding/json`. I'll admit I'm not sure what the implications of each is...
Solves #12
In order to increase backward compatibility with the standard `encoding/json` package one step further it would be great to support those interfaces.