From e20902799bd710ec456e7f457ce2868a3bf2779a Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Tue, 10 Dec 2024 23:19:43 +0300 Subject: Новый путь MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md (limited to 'README.md') 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| -- cgit v1.2.3