aboutsummaryrefslogtreecommitdiff
path: root/docs/help/enlist_pair.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/help/enlist_pair.html')
-rw-r--r--docs/help/enlist_pair.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/docs/help/enlist_pair.html b/docs/help/enlist_pair.html
new file mode 100644
index 00000000..b28f9c8c
--- /dev/null
+++ b/docs/help/enlist_pair.html
@@ -0,0 +1,39 @@
+<head>
+ <link href="../favicon.ico" rel="shortcut icon" type="image/x-icon"/>
+ <link href="../style.css" rel="stylesheet"/>
+ <title>BQN: Bow Tie (`โ‹ˆ`)</title>
+</head>
+<div class="nav">(<a href="https://github.com/mlochbaum/BQN">github</a>) / <a href="../index.html">BQN</a> / <a href="index.html">help</a></div>
+<h1 id="bow-tie-"><a class="header" href="#bow-tie-">Bow Tie (<code><span class='Function'>โ‹ˆ</span></code>)</a></h1>
+<h2 id="--enlist-"><a class="header" href="#--enlist-"><code><span class='Function'>โ‹ˆ</span> <span class='Value'>๐•ฉ</span></code>: Enlist</a></h2>
+<p>Put <code><span class='Value'>๐•ฉ</span></code> in a single element list. (<code><span class='Bracket'>โŸจ</span><span class='Value'>๐•ฉ</span><span class='Bracket'>โŸฉ</span></code>)</p>
+<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=ICDii4ggMQoKICDii4ggNOKAvzQg4qWKIDPigL82N+KAvzjigL8w">โ†—๏ธ</a><pre> <span class='Function'>โ‹ˆ</span> <span class='Number'>1</span>
+โŸจ 1 โŸฉ
+
+ <span class='Function'>โ‹ˆ</span> <span class='Number'>4</span><span class='Ligature'>โ€ฟ</span><span class='Number'>4</span> <span class='Function'>โฅŠ</span> <span class='Number'>3</span><span class='Ligature'>โ€ฟ</span><span class='Number'>67</span><span class='Ligature'>โ€ฟ</span><span class='Number'>8</span><span class='Ligature'>โ€ฟ</span><span class='Number'>0</span>
+โ”Œโ”€
+ยท โ”Œโ”€
+ โ•ต 3 67 8 0
+ 3 67 8 0
+ 3 67 8 0
+ 3 67 8 0
+ โ”˜
+ โ”˜
+</pre>
+<h2 id="---pair"><a class="header" href="#---pair"><code><span class='Value'>๐•จ</span> <span class='Function'>โ‹ˆ</span> <span class='Value'>๐•ฉ</span></code>: Pair</a></h2>
+<p>Put <code><span class='Value'>๐•จ</span></code> and <code><span class='Value'>๐•ฉ</span></code> in a two element list. (<code><span class='Bracket'>โŸจ</span><span class='Value'>๐•จ</span><span class='Separator'>,</span> <span class='Value'>๐•ฉ</span><span class='Bracket'>โŸฉ</span></code>)</p>
+<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=ICAxIOKLiCAyCgogIDEg4ouIICJkc2Rhc2RhcyIKCiAgKDPigL8zIOKliiAzKSDii4ggNjfigL8nYSfigL8iZXhhbXBsZSI=">โ†—๏ธ</a><pre> <span class='Number'>1</span> <span class='Function'>โ‹ˆ</span> <span class='Number'>2</span>
+โŸจ 1 2 โŸฉ
+
+ <span class='Number'>1</span> <span class='Function'>โ‹ˆ</span> <span class='String'>&quot;dsdasdas&quot;</span>
+โŸจ 1 "dsdasdas" โŸฉ
+
+ <span class='Paren'>(</span><span class='Number'>3</span><span class='Ligature'>โ€ฟ</span><span class='Number'>3</span> <span class='Function'>โฅŠ</span> <span class='Number'>3</span><span class='Paren'>)</span> <span class='Function'>โ‹ˆ</span> <span class='Number'>67</span><span class='Ligature'>โ€ฟ</span><span class='String'>'a'</span><span class='Ligature'>โ€ฟ</span><span class='String'>&quot;example&quot;</span>
+โ”Œโ”€
+ยท โ”Œโ”€ โŸจ 67 'a' "example" โŸฉ
+ โ•ต 3 3 3
+ 3 3 3
+ 3 3 3
+ โ”˜
+ โ”˜
+</pre>