├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── consumer.go ├── consumer_test.go ├── docs.go ├── func.go ├── generator ├── channel.go ├── channel_test.go ├── generator.go ├── generator_test.go ├── slice.go └── slice_test.go ├── go.mod ├── iterator.go ├── mapper.go └── mapper_test.go /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/README.md -------------------------------------------------------------------------------- /consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/consumer.go -------------------------------------------------------------------------------- /consumer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/consumer_test.go -------------------------------------------------------------------------------- /docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/docs.go -------------------------------------------------------------------------------- /func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/func.go -------------------------------------------------------------------------------- /generator/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/generator/channel.go -------------------------------------------------------------------------------- /generator/channel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/generator/channel_test.go -------------------------------------------------------------------------------- /generator/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/generator/generator.go -------------------------------------------------------------------------------- /generator/generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/generator/generator_test.go -------------------------------------------------------------------------------- /generator/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/generator/slice.go -------------------------------------------------------------------------------- /generator/slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/generator/slice_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/go.mod -------------------------------------------------------------------------------- /iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/iterator.go -------------------------------------------------------------------------------- /mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/mapper.go -------------------------------------------------------------------------------- /mapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaa110/goterator/HEAD/mapper_test.go --------------------------------------------------------------------------------