├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── go.mod └── slices ├── all.go ├── all_test.go ├── any.go ├── any_test.go ├── check.go ├── check_test.go ├── count.go ├── count_test.go ├── delete.go ├── delete_test.go ├── filter.go ├── filter_test.go ├── find.go ├── find_test.go ├── map.go ├── map_test.go ├── reduce.go ├── reduce_test.go ├── sum.go ├── sum_test.go ├── unique.go └── unique_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/akshaybharambe14/gouf 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /slices/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/all.go -------------------------------------------------------------------------------- /slices/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/all_test.go -------------------------------------------------------------------------------- /slices/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/any.go -------------------------------------------------------------------------------- /slices/any_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/any_test.go -------------------------------------------------------------------------------- /slices/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/check.go -------------------------------------------------------------------------------- /slices/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/check_test.go -------------------------------------------------------------------------------- /slices/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/count.go -------------------------------------------------------------------------------- /slices/count_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/count_test.go -------------------------------------------------------------------------------- /slices/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/delete.go -------------------------------------------------------------------------------- /slices/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/delete_test.go -------------------------------------------------------------------------------- /slices/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/filter.go -------------------------------------------------------------------------------- /slices/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/filter_test.go -------------------------------------------------------------------------------- /slices/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/find.go -------------------------------------------------------------------------------- /slices/find_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/find_test.go -------------------------------------------------------------------------------- /slices/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/map.go -------------------------------------------------------------------------------- /slices/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/map_test.go -------------------------------------------------------------------------------- /slices/reduce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/reduce.go -------------------------------------------------------------------------------- /slices/reduce_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/reduce_test.go -------------------------------------------------------------------------------- /slices/sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/sum.go -------------------------------------------------------------------------------- /slices/sum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/sum_test.go -------------------------------------------------------------------------------- /slices/unique.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/unique.go -------------------------------------------------------------------------------- /slices/unique_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaybharambe14/gouf/HEAD/slices/unique_test.go --------------------------------------------------------------------------------