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/over.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 help/over.md (limited to 'help/over.md') diff --git a/help/over.md b/help/over.md new file mode 100644 index 00000000..d6086037 --- /dev/null +++ b/help/over.md @@ -0,0 +1,29 @@ +*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/over.html).* + +# Circle (`○`) + +## `𝔽○𝔾 𝕩`: Atop + +Apply `𝔾` to `𝕩`, then apply `𝔽` (`𝔽 𝔾 𝕩`). + +## `𝔽` and `𝔾` must be monadic. + + -○- 5 + + - - 5 + + + +## `𝕨 𝔽○𝔾 𝕩`: Over + +Apply `𝔾` to `𝕨` and `𝕩`, then apply `𝔽` to them (`(𝔾 𝕨) 𝔽 (𝔾 𝕩)`). + +## `𝔽` must be dyadic, `𝔾` must be monadic. + + 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/over.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'help/over.md') diff --git a/help/over.md b/help/over.md index d6086037..38795145 100644 --- a/help/over.md +++ b/help/over.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 `𝔽` to them (`(𝔾 𝕨) 𝔽 (𝔾 𝕩)`). -## `𝔽` must be dyadic, `𝔾` must be monadic. +`𝔽` must be dyadic, `𝔾` must be monadic. 1 +○- 2 -- cgit v1.2.3