aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-11 01:25:59 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-11 01:25:59 +0300
commit739dacf6d4061ad1960423f2844b5319114741a3 (patch)
tree2a53459f4c6da4afa388213c0bf7112d3be3c138 /content
parenta79499018bed35bab05f888ce0103b37655e2852 (diff)
Auto-commit 2024-12-11
Diffstat (limited to 'content')
-rw-r--r--content/go/collection.md20
1 files changed, 19 insertions, 1 deletions
diff --git a/content/go/collection.md b/content/go/collection.md
index 9375e05..560f88f 100644
--- a/content/go/collection.md
+++ b/content/go/collection.md
@@ -4,4 +4,22 @@ name = "collection"
repository = "https://git.neonxp.ru/collection.git"
description = "Генерики для коллекций"
gomod = true
-+++ \ No newline at end of file
++++
+
+Go >= 1.18 required.
+
+# Installation
+
+`go get neonxp.ru/go/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| \ No newline at end of file