diff options
Diffstat (limited to 'help/reverse_rotate.md')
| -rw-r--r-- | help/reverse_rotate.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/help/reverse_rotate.md b/help/reverse_rotate.md new file mode 100644 index 00000000..a7ec430b --- /dev/null +++ b/help/reverse_rotate.md @@ -0,0 +1,27 @@ +*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/reverse_rotate.html).* + +# Circle Stile (`⌽`) + +## `⌽ 𝕩`: Reverse + +Reverse the first axis of `𝕩`. + + ⌽ 1‿2‿3 + + a ← 3‿3 ⥊ ↕9 + + ⌽ a + + + +## `𝕨 ⌽ 𝕩`: Dyad + +Move the first `𝕨` elements of `𝕩` to its end. Negative `𝕨` reverses the direction of rotation. + + 2 ⌽ 1‿2‿3 + + a ← 3‿3 ⥊ ↕9 + + 2 ⌽ a + + |
