blob: c8037cff5f46f7240f21ef8bfd1ac8e41066290e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
description: Генерики для коллекций
gomod: true
name: collection
repository: https://git.neonxp.ru/collection.git
title: Collection
---
Go >= 1.18 required.
# Методы
|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|
|