2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: each
|
|
|
|
layout: command
|
|
|
|
version: 0.59.0
|
|
|
|
---
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
Run a block on each element of input
|
|
|
|
|
|
|
|
## Signature
|
2021-05-30 02:57:04 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
```> each (block) --numbered```
|
2021-05-30 02:57:04 +02:00
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
- `block`: the block to run
|
|
|
|
- `--numbered`: iterate with an index
|
2021-05-30 02:57:04 +02:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
Multiplies elements in list
|
2021-05-30 02:57:04 +02:00
|
|
|
```shell
|
2022-02-17 12:40:24 +01:00
|
|
|
> [1 2 3] | each { |it| 2 * $it }
|
2022-02-14 03:22:51 +01:00
|
|
|
```
|