├── LICENSE ├── append.go ├── append1.go ├── append2.go ├── append3.go ├── assignable.md ├── atomic_nonvalue.go ├── atomic_value.go ├── containers └── containers.go ├── figure23.go ├── figure3.go ├── figure4.go ├── figure5.go ├── figure5_mono.go ├── figure6.go ├── figure7.go ├── figure7_mono.go ├── go.mod ├── iterate └── iterate.go ├── map.go ├── mapat.go ├── nomono.fgg ├── nomono.go ├── ordered.go ├── subtypes.md ├── typelist.md └── unsafeslice ├── unsafeslice.go └── unsafeslice_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/LICENSE -------------------------------------------------------------------------------- /append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/append.go -------------------------------------------------------------------------------- /append1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/append1.go -------------------------------------------------------------------------------- /append2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/append2.go -------------------------------------------------------------------------------- /append3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/append3.go -------------------------------------------------------------------------------- /assignable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/assignable.md -------------------------------------------------------------------------------- /atomic_nonvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/atomic_nonvalue.go -------------------------------------------------------------------------------- /atomic_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/atomic_value.go -------------------------------------------------------------------------------- /containers/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/containers/containers.go -------------------------------------------------------------------------------- /figure23.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/figure23.go -------------------------------------------------------------------------------- /figure3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/figure3.go -------------------------------------------------------------------------------- /figure4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/figure4.go -------------------------------------------------------------------------------- /figure5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/figure5.go -------------------------------------------------------------------------------- /figure5_mono.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/figure5_mono.go -------------------------------------------------------------------------------- /figure6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/figure6.go -------------------------------------------------------------------------------- /figure7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/figure7.go -------------------------------------------------------------------------------- /figure7_mono.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/figure7_mono.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/bcmills/go2go 2 | 3 | go 1.21.1 4 | -------------------------------------------------------------------------------- /iterate/iterate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/iterate/iterate.go -------------------------------------------------------------------------------- /map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/map.go -------------------------------------------------------------------------------- /mapat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/mapat.go -------------------------------------------------------------------------------- /nomono.fgg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/nomono.fgg -------------------------------------------------------------------------------- /nomono.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/nomono.go -------------------------------------------------------------------------------- /ordered.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/ordered.go -------------------------------------------------------------------------------- /subtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/subtypes.md -------------------------------------------------------------------------------- /typelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/typelist.md -------------------------------------------------------------------------------- /unsafeslice/unsafeslice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/unsafeslice/unsafeslice.go -------------------------------------------------------------------------------- /unsafeslice/unsafeslice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmills/go2go/HEAD/unsafeslice/unsafeslice_test.go --------------------------------------------------------------------------------