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 From edddb9be0aa1f03c8608d3dabf7ccfea3fdde206 Mon Sep 17 00:00:00 2001 From: razetime Date: Wed, 19 Jan 2022 22:52:35 +0530 Subject: fix erratic h2s --- help/atop.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'help/atop.md') diff --git a/help/atop.md b/help/atop.md index 98073c0f..525c4800 100644 --- a/help/atop.md +++ b/help/atop.md @@ -6,7 +6,7 @@ Apply `𝔾` to `𝕩`, then apply `𝔽` (`𝔽 𝔾 𝕩`). -## `𝔽` and `𝔾` must be monadic. +`𝔽` and `𝔾` must be monadic. -∘- 5 @@ -18,7 +18,7 @@ Apply `𝔾` to `𝕩`, then apply `𝔽` (`𝔽 𝔾 𝕩`). Apply `𝔾` to `𝕨` and `𝕩`, then apply `𝔽` (`𝔽 (𝕨 𝔾 𝕩)`). -## `𝔽` must be monadic, and `𝔾` must be dyadic. +#`𝔽` must be monadic, and `𝔾` must be dyadic. 1 -∘+ 2 -- cgit v1.2.3