Skip to content

Commit

Permalink
chore: autopublish 2022-11-25T03:34:40Z
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 25, 2022
1 parent 22f9e36 commit 3d9b98b
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions sclin-docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -1524,7 +1524,7 @@ Stack: ``` a -> _ ```
Shuffles `a`.
```
10O>a shuf
-> [4 9 2 3 8 6 7 1 0 5]
-> [1 8 7 2 3 0 5 4 9 6]
```


Expand Down Expand Up @@ -1572,6 +1572,17 @@ Cartesian product of iterable-of-iterables `a` to `n`.
```


## CMD: [``` tpose ```](#cmd-tpose)

Stack: ``` a[_*] -> _[_*] ```

Transposes a collection of collections matrix-style.
```
[[1 2 3][4 5 6][7 8 9]] tpose
-> [[1 4 7] [2 5 8] [3 6 9]]
```


## CMD: [``` S>c ```](#cmd-sc)

Stack: ``` (a >STR)' -> ARR[NUM*]' ```
Expand Down Expand Up @@ -2046,7 +2057,7 @@ See [``` map ```](#cmd-map) for the signature of `f`.
```
```
[1 2 3 4 5] \$rng sort
-> [3 5 2 4 1]
-> [3 5 2 1 4]
```


Expand Down

0 comments on commit 3d9b98b

Please sign in to comment.