├── LICENSE ├── README.md ├── avl.go ├── bench_test.go ├── go.mod ├── llrb.go ├── omap.go ├── omap_test.go └── treap.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsc/omap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsc/omap/HEAD/README.md -------------------------------------------------------------------------------- /avl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsc/omap/HEAD/avl.go -------------------------------------------------------------------------------- /bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsc/omap/HEAD/bench_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module rsc.io/omap 2 | 3 | go 1.23.0 4 | -------------------------------------------------------------------------------- /llrb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsc/omap/HEAD/llrb.go -------------------------------------------------------------------------------- /omap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsc/omap/HEAD/omap.go -------------------------------------------------------------------------------- /omap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsc/omap/HEAD/omap_test.go -------------------------------------------------------------------------------- /treap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsc/omap/HEAD/treap.go --------------------------------------------------------------------------------