├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── map.go ├── mutex.go ├── mutex_test.go ├── once.go ├── once_test.go ├── pool.go └── pool_test.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: carlmjohnson 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/syncx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/syncx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/syncx/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/carlmjohnson/syncx 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/syncx/HEAD/map.go -------------------------------------------------------------------------------- /mutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/syncx/HEAD/mutex.go -------------------------------------------------------------------------------- /mutex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/syncx/HEAD/mutex_test.go -------------------------------------------------------------------------------- /once.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/syncx/HEAD/once.go -------------------------------------------------------------------------------- /once_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/syncx/HEAD/once_test.go -------------------------------------------------------------------------------- /pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/syncx/HEAD/pool.go -------------------------------------------------------------------------------- /pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/syncx/HEAD/pool_test.go --------------------------------------------------------------------------------