Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neonxp/collection
Golang collection of collection functions
https://github.com/neonxp/collection
Last synced: about 1 month ago
JSON representation
Golang collection of collection functions
- Host: GitHub
- URL: https://github.com/neonxp/collection
- Owner: neonxp
- License: mit
- Created: 2022-04-07T18:34:40.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-07T18:47:28.000Z (almost 3 years ago)
- Last Synced: 2023-07-13T02:48:00.748Z (over 1 year ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Collection with generics
Go >= 1.18 required.
# Installation
`go get go.neonxp.dev/collection@latest`
# Methods
|Method|Description|Example|
|:-----|:----------|------:|
|`Map`|Async map over slice|[example_map_test.go](./example_map_test.go)|
|`MapSync`|Sync map over slice|[example_map_test.go](./example_map_test.go)|
|`Each`|Async call cb over each element|[example_each_test.go](./example_each_test.go)|
|`MapEach`|Sync call cb over each element|[example_each_test.go](./example_each_test.go)|
|`Filter`|Returns filtered elements async|TODO|
|`FilterSync`|Returns filtered elements|TODO|
|`Reduce`|Produce one single result from a sequence of elements|TODO|