├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── bench_large.png ├── bench_medium.png ├── bench_small.png └── logo.png ├── benchmark ├── benchmark_fixture.go └── benchmark_test.go ├── bytes.go ├── decode.go ├── decode_test.go ├── example_test.go └── interface.go /.gitignore: -------------------------------------------------------------------------------- 1 | draft* 2 | *.out 3 | *.test 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/README.md -------------------------------------------------------------------------------- /assets/bench_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/assets/bench_large.png -------------------------------------------------------------------------------- /assets/bench_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/assets/bench_medium.png -------------------------------------------------------------------------------- /assets/bench_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/assets/bench_small.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/assets/logo.png -------------------------------------------------------------------------------- /benchmark/benchmark_fixture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/benchmark/benchmark_fixture.go -------------------------------------------------------------------------------- /benchmark/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/benchmark/benchmark_test.go -------------------------------------------------------------------------------- /bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/bytes.go -------------------------------------------------------------------------------- /decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/decode.go -------------------------------------------------------------------------------- /decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/decode_test.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/example_test.go -------------------------------------------------------------------------------- /interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8m/djson/HEAD/interface.go --------------------------------------------------------------------------------