summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-10 23:19:43 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-12-10 23:19:43 +0300
commite20902799bd710ec456e7f457ce2868a3bf2779a (patch)
tree0970f9b2bdb60ce788132f2592507e59350b80d0 /README.md
parent2ab7bd8ec9515bf83814d86914314b5540bb2fd5 (diff)
Новый путьv1.0.1
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d3635ac
--- /dev/null
+++ b/README.md
@@ -0,0 +1,19 @@
+# Collection with generics
+
+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|