Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 06-numbers-and-logic.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ An important function that works on boolean arrays is *where* (`&`). Where takes
repeats their indices by their values:

```
& 1 2 3
0 1 1 2 2 2
& 1 3 2
0 1 1 1 2 2
```

What makes `&` interesting is that it can also repeat an index 0 times, thereby discarding it.
Expand Down