aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2020-06-07 13:07:48 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2020-06-07 13:11:02 -0400
commit99f8a78501a1568d4a67178df727b1c6750942d4 (patch)
treea6d8a3a71192ed72df14470bf2f390fecec56fc8
parente46509d1a3ac181705932fe07e99ca0816f997aa (diff)
Formatting
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index c307bf43..5f6bc64d 100644
--- a/README.md
+++ b/README.md
@@ -129,11 +129,11 @@ Glyph(s) | Meaning
Glyph | Name(s) | Definition | Description
------|-------------|--------------------------------|---------------------------------------
`˜` | Self/Swap | `{π•©π”½π•¨βŠ£π•©}` | Duplicate one argument or exchange two
-`∘` | Atop | `{𝔽𝕨𝔾𝕩}` | Apply 𝔾 to both arguments and 𝔽 to the result
-`β—‹` | Over | `{(𝔾𝕨)𝔽𝔾𝕩}` | Apply 𝔾 to each argument and 𝔽 to the results
-`⊸` | Before/Bind | `{(𝔽𝕨)𝔾𝕩}˜˜` | 𝔾's left argument comes from 𝔽
-`⟜` | After/Bind | `{𝕨𝔽𝔾𝕩}˜˜` | 𝔽's right argument comes from 𝔾
-`⌾` | Under | `{π”ΎβΌβˆ˜π”½β—‹π”Ύ}` OR `{(𝔾𝕩)←𝕨𝔽○𝔾𝕩⋄𝕩}` | Apply 𝔽 over 𝔾, then undo 𝔾
+`∘` | Atop | `{𝔽𝕨𝔾𝕩}` | Apply `𝔾` to both arguments and `𝔽` to the result
+`β—‹` | Over | `{(𝔾𝕨)𝔽𝔾𝕩}` | Apply `𝔾` to each argument and `𝔽` to the results
+`⊸` | Before/Bind | `{(𝔽𝕨)𝔾𝕩}˜˜` | `𝔾`'s left argument comes from `𝔽`
+`⟜` | After/Bind | `{𝕨𝔽𝔾𝕩}˜˜` | `𝔽`'s right argument comes from `𝔾`
+`⌾` | Under | `{π”ΎβΌβˆ˜π”½β—‹π”Ύ}` OR `{(𝔾𝕩)←𝕨𝔽○𝔾𝕩⋄𝕩}` | Apply `𝔽` over `𝔾`, then undo `𝔾`
Under is not a true combinator since it has an "undo" step at the end. This step might be implemented using the left operand's inverse (*computational* Under) or its structural properties (*structural* Under).
@@ -141,10 +141,10 @@ Other modifiers and compositions control array traversal and iteration. In three
Modifier | Name | Compositon | Name
---------|---------|------------|--------
-`˘` | Cells | βŽ‰ | Rank
-`Β¨` | Each | βš‡ | Depth
+`˘` | Cells | `βŽ‰` | Rank
+`Β¨` | Each | `βš‡` | Depth
`⌜` | Table |
-`⁼` | Inverse | ⍟ | Iterate
+`⁼` | Inverse | `⍟` | Iterate
`Β΄` | Reduce |
`` ` `` | Scan |