├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── intintmap.go └── intintmap_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/intintmap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/intintmap/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/brentp/intintmap 2 | -------------------------------------------------------------------------------- /intintmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/intintmap/HEAD/intintmap.go -------------------------------------------------------------------------------- /intintmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentp/intintmap/HEAD/intintmap_test.go --------------------------------------------------------------------------------