aboutsummaryrefslogtreecommitdiff
path: root/help/atop.md
diff options
context:
space:
mode:
Diffstat (limited to 'help/atop.md')
-rw-r--r--help/atop.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/help/atop.md b/help/atop.md
new file mode 100644
index 00000000..98073c0f
--- /dev/null
+++ b/help/atop.md
@@ -0,0 +1,29 @@
+*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/atop.html).*
+
+# Ring Operator (`∘`)
+
+## `𝔽∘𝔾 𝕩`: Atop
+
+Apply `𝔾` to `𝕩`, then apply `𝔽` (`𝔽 𝔾 𝕩`).
+
+## `𝔽` and `𝔾` must be monadic.
+
+ -∘- 5
+
+ - - 5
+
+
+
+## `𝕨 𝔽∘𝔾 𝕩`: Dyadic Atop
+
+Apply `𝔾` to `𝕨` and `𝕩`, then apply `𝔽` (`𝔽 (𝕨 𝔾 𝕩)`).
+
+## `𝔽` must be monadic, and `𝔾` must be dyadic.
+
+ 1 -∘+ 2
+
+ 1 - + 2
+
+ - 1 + 2
+
+