blob: 22fe06731e8ee0d43d1af3295d0746d0c71878b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<head>
<link href="../favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<link href="../style.css" rel="stylesheet"/>
<title>BQN: Circled Horizontal Bar With Notch (โ)</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="circled-horizontal-bar-with-notch-"><a class="header" href="#circled-horizontal-bar-with-notch-">Circled Horizontal Bar With Notch (<code><span class='Modifier2'>โ</span></code>)</a></h1>
<h2 id="๐ฝ๐-๐ฉ-๐จ-๐ฝ๐-๐ฉ-rank"><a class="header" href="#๐ฝ๐-๐ฉ-๐จ-๐ฝ๐-๐ฉ-rank"><code><span class='Function'>๐ฝ</span><span class='Modifier2'>โ</span><span class='Value'>๐</span> <span class='Value'>๐ฉ</span></code>, <code><span class='Value'>๐จ</span> <span class='Function'>๐ฝ</span><span class='Modifier2'>โ</span><span class='Value'>๐</span> <span class='Value'>๐ฉ</span></code>: Rank</a></h2>
<p>Apply <code><span class='Function'>๐ฝ</span></code> to cells at ranks given in <code><span class='Value'>๐</span></code>.</p>
<p>The ranks applied are given by the following:</p>
<ul>
<li><code><span class='Modifier2'>โ</span> <span class='Value'>c</span></code> Rank-c cells of <code><span class='Value'>๐ฉ</span></code> (monadic) or both arguments (dyadic)</li>
<li><code><span class='Modifier2'>โ</span> <span class='Value'>b</span><span class='Ligature'>โฟ</span><span class='Value'>c</span></code> โ Rank-b cells of <code><span class='Value'>๐จ</span></code> and rank-c cells of <code><span class='Value'>๐ฉ</span></code> (dyadic)</li>
<li><code><span class='Modifier2'>โ</span> <span class='Value'>a</span><span class='Ligature'>โฟ</span><span class='Value'>b</span><span class='Ligature'>โฟ</span><span class='Value'>c</span></code> โ Rank-a cells of <code><span class='Value'>๐ฉ</span></code> (monadic), b-cells of <code><span class='Value'>๐จ</span></code> and c-cells of <code><span class='Value'>๐ฉ</span></code> (dyadic)</li>
</ul>
<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=ICAgYSDihpAgM+KAvzLigL804qWKIkFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaIgoKICAg4oy94o6JMiBh">โ๏ธ</a><pre> <span class='Value'>a</span> <span class='Gets'>โ</span> <span class='Number'>3</span><span class='Ligature'>โฟ</span><span class='Number'>2</span><span class='Ligature'>โฟ</span><span class='Number'>4</span><span class='Function'>โฅ</span><span class='String'>"ABCDEFGHIJKLMNOPQRSTUVWXYZ"</span>
<span class='Function'>โฝ</span><span class='Modifier2'>โ</span><span class='Number'>2</span> <span class='Value'>a</span>
โโ
โ"EFGH
ABCD
ยทMNOP
IJKL
ยทUVWX
QRST"
โ
</pre>
|