json
#Reading
- https://dave.cheney.net/high-performance-json.html
- TODO(butuzov):
json/v2
#Tooling
#Libraries
#Recipes
#ordered json
See next example of inlining, with help of sorted slics we can have sorted keys in json.
// - json/unordered.go -
#Skipping if empty (zero value) ,omitempty
// - json/omitempty.go -
>> {"A":"","b":"","e":""}
#Skipping with -
json:"-" Helps to skip Records population
// - json/skip_json_fileds.go -
#htmlquoting
// - json/htmlquoting.go -
#json.Raw
// - json/raw.go -