├── .github └── workflows │ └── test.yml ├── LICENSE ├── README.md ├── async ├── async.go ├── async_test.go ├── error.go ├── error_test.go ├── example_test.go ├── internal │ ├── error.go │ └── error_test.go ├── option.go ├── option_test.go ├── values.go └── values_test.go └── go.mod /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/README.md -------------------------------------------------------------------------------- /async/async.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/async.go -------------------------------------------------------------------------------- /async/async_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/async_test.go -------------------------------------------------------------------------------- /async/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/error.go -------------------------------------------------------------------------------- /async/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/error_test.go -------------------------------------------------------------------------------- /async/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/example_test.go -------------------------------------------------------------------------------- /async/internal/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/internal/error.go -------------------------------------------------------------------------------- /async/internal/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/internal/error_test.go -------------------------------------------------------------------------------- /async/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/option.go -------------------------------------------------------------------------------- /async/option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/option_test.go -------------------------------------------------------------------------------- /async/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/values.go -------------------------------------------------------------------------------- /async/values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdleal/go-async/HEAD/async/values_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/rdleal/go-async 2 | 3 | go 1.15 4 | --------------------------------------------------------------------------------