From 2c50d91ec7eb8bc7890befe874a0b93729c2437e Mon Sep 17 00:00:00 2001 From: razetime Date: Wed, 19 Jan 2022 22:48:16 +0530 Subject: add h2s remove copied output, ascii filenames --- help/atop.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 help/atop.md (limited to 'help/atop.md') 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 + + -- cgit v1.2.3