flowstdlib 0.142.0

The standard library of functions and flows for 'flow' programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
## Enumerate (//flowstdlib/data/enumerate)
Enumerate the elements of an array

With an input array such as `["a", "b"]` it will assign an index to each element
and produce an output array of tuples (array of two elements) such as `[[0, "a"], [1, "b"]]`

### Include using
```toml
[[process]]
source = "lib://flowstdlib/data/enumerate"
```