├── .gitignore ├── CONTRIBUTING ├── LICENSE ├── README.md ├── go.mod ├── orderedcode.go └── orderedcode_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/orderedcode/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/orderedcode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/orderedcode/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/orderedcode 2 | -------------------------------------------------------------------------------- /orderedcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/orderedcode/HEAD/orderedcode.go -------------------------------------------------------------------------------- /orderedcode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/orderedcode/HEAD/orderedcode_test.go --------------------------------------------------------------------------------