├── LICENSE ├── README.md ├── go.mod ├── iterator.go ├── iterator_test.go ├── option.go └── shell.nix /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soft/iter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soft/iter/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/Soft/iter 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soft/iter/HEAD/iterator.go -------------------------------------------------------------------------------- /iterator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soft/iter/HEAD/iterator_test.go -------------------------------------------------------------------------------- /option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soft/iter/HEAD/option.go -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Soft/iter/HEAD/shell.nix --------------------------------------------------------------------------------