diff options
author | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2022-04-07 21:36:40 +0300 |
---|---|---|
committer | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2022-04-07 21:36:40 +0300 |
commit | 9cd6b0fca87679e570fbdd4942e3068feb3439fa (patch) | |
tree | 557bf877d71854480f4171e9dd324cebb5606056 /Readme.md |
initial
Diffstat (limited to 'Readme.md')
-rw-r--r-- | Readme.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..d48a17d --- /dev/null +++ b/Readme.md @@ -0,0 +1,19 @@ +# Collection with generics + +Go >= 1.18 required. + +# Installation + +`go get https://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| |