Skip to content

Commit

Permalink
chore: autopublish 2023-08-26T18:53:53Z
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 26, 2023
1 parent c28933f commit ef8984a
Showing 1 changed file with 42 additions and 2 deletions.
44 changes: 42 additions & 2 deletions sclin-docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,15 @@
[``` >k ```](#cmd-k)
[``` >v ```](#cmd-v)
[``` a>b ```](#cmd-ab)
[``` a-b ```](#cmd-a-b)
[``` O>a ```](#cmd-oa)
[``` O-a ```](#cmd-o-a)
[``` a>O ```](#cmd-ao)
[``` a-O ```](#cmd-a-o)
[``` I>a ```](#cmd-ia)
[``` I-a ```](#cmd-i-a)
[``` a>I ```](#cmd-ai)
[``` a-I ```](#cmd-a-i)
[``` shuf ```](#cmd-shuf)
[``` perm ```](#cmd-perm)
[``` comb ```](#cmd-comb)
Expand Down Expand Up @@ -1868,42 +1873,77 @@ Stack: ``` (a >NUM)' (b >NUM)' -> ARR[NUM*]' ```
Exclusive range from `a` to `b`.


## CMD: [``` a-b ```](#cmd-a-b)

Stack: ``` (a >NUM)' (b >NUM)' -> ARR[NUM*]' ```

Inclusive range from `a` to `b`.


## CMD: [``` O>a ```](#cmd-oa)

Stack: ``` (a >NUM)' -> ARR[NUM*]' ```

Exclusive range from 0 to `a`.


## CMD: [``` O-a ```](#cmd-o-a)

Stack: ``` (a >NUM)' -> ARR[NUM*]' ```

Inclusive range from 0 to `a`.


## CMD: [``` a>O ```](#cmd-ao)

Stack: ``` (a >NUM)' -> ARR[NUM*]' ```

Exclusive range from `a` to 0.


## CMD: [``` a-O ```](#cmd-a-o)

Stack: ``` (a >NUM)' -> ARR[NUM*]' ```

Inclusive range from `a` to 0.


## CMD: [``` I>a ```](#cmd-ia)

Stack: ``` (a >NUM)' -> ARR[NUM*]' ```

Exclusive range from 1 to `a`.


## CMD: [``` I-a ```](#cmd-i-a)

Stack: ``` (a >NUM)' -> ARR[NUM*]' ```

Inclusive range from 1 to `a`.


## CMD: [``` a>I ```](#cmd-ai)

Stack: ``` (a >NUM)' -> ARR[NUM*]' ```

Exclusive range from `a` to 1.


## CMD: [``` a-I ```](#cmd-a-i)

Stack: ``` (a >NUM)' -> ARR[NUM*]' ```

Inclusive range from `a` to 1.


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

Stack: ``` a -> _ ```

Shuffles `a`.
```
10O>a shuf
-> [2 1 4 7 9 5 3 6 0 8]
-> [5 3 0 9 4 8 1 7 2 6]
```


Expand Down Expand Up @@ -2509,7 +2549,7 @@ See [``` map ```](#cmd-map) for the signature of `f`.
```
```
[1 2 3 4 5] \$rng sort
-> [4 2 5 3 1]
-> [1 4 2 3 5]
```


Expand Down

0 comments on commit ef8984a

Please sign in to comment.