aboutsummaryrefslogtreecommitdiff
path: root/docs/tutorial/combinator.html
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2022-01-04 22:03:22 -0500
committerMarshall Lochbaum <mwlochbaum@gmail.com>2022-01-04 22:03:22 -0500
commit7c24767d82a01f23e1c4010f1a9d0c02f2befc5f (patch)
treec2882822fd33574b6d94e18dba0d62e635579cb9 /docs/tutorial/combinator.html
parentc0effcec4d7e01c2e75614372780a115dcf203b8 (diff)
Switch from using ≍ to ⋈ in the tutorials so far
Diffstat (limited to 'docs/tutorial/combinator.html')
-rw-r--r--docs/tutorial/combinator.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorial/combinator.html b/docs/tutorial/combinator.html
index abfcfbe0..65b223ab 100644
--- a/docs/tutorial/combinator.html
+++ b/docs/tutorial/combinator.html
@@ -304,10 +304,10 @@
<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=InN0cmluZyIgPeKXi+KJoCAic3Rpbmci">↗️</a><pre> <span class='String'>&quot;string&quot;</span> <span class='Function'>=</span><span class='Modifier2'>○</span><span class='Function'>≠</span> <span class='String'>&quot;sting&quot;</span>
0
</pre>
-<p>Let's use the list formation function Solo/Couple (<code><span class='Function'>≍</span></code>) to see what happens more clearly:</p>
-<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=InN0cmluZyIg4omN4peL4omgICJzdGluZyIK4omN4peL4omgICJzdGluZyI=">↗️</a><pre> <span class='String'>&quot;string&quot;</span> <span class='Function'>≍</span><span class='Modifier2'>○</span><span class='Function'>≠</span> <span class='String'>&quot;sting&quot;</span>
+<p>Let's use the list formation function Enlist/Pair (<code><span class='Function'>⋈</span></code>) to see what happens more clearly:</p>
+<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=InN0cmluZyIg4ouI4peL4omgICJzdGluZyIK4ouI4peL4omgICJzdGluZyI=">↗️</a><pre> <span class='String'>&quot;string&quot;</span> <span class='Function'>⋈</span><span class='Modifier2'>○</span><span class='Function'>≠</span> <span class='String'>&quot;sting&quot;</span>
⟨ 6 5 ⟩
- <span class='Function'>≍</span><span class='Modifier2'>○</span><span class='Function'>≠</span> <span class='String'>&quot;sting&quot;</span>
+ <span class='Function'>⋈</span><span class='Modifier2'>○</span><span class='Function'>≠</span> <span class='String'>&quot;sting&quot;</span>
⟨ 5 ⟩
</pre>
<p>Atop always applies its right operand once, passing every argument (that is, one or two of them) in that call. Over calls its right operand on each argument individually. The results are then all used as arguments to the left operand. If there's only one argument, Atop and Over turn out to be the same: both of them call the right operand, then the left, like ordinary mathematical composition. Here are the two together for comparison.</p>