aboutsummaryrefslogtreecommitdiff
path: root/help/firstcell_select.md
diff options
context:
space:
mode:
Diffstat (limited to 'help/firstcell_select.md')
-rw-r--r--help/firstcell_select.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/help/firstcell_select.md b/help/firstcell_select.md
new file mode 100644
index 00000000..94c82357
--- /dev/null
+++ b/help/firstcell_select.md
@@ -0,0 +1,27 @@
+*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/firstcell_select.html).*
+
+# Square Image Of (`⊏`)
+
+## `⊏ 𝕩`: First Cell
+
+First major cell of `𝕩`.
+
+ ⊏ ⟨1, 2, 3⟩
+
+ a ← 3‿3 ⥊ ↕9
+
+ ⊏ a
+
+
+
+## `𝕨 ⊏ 𝕩`: Select
+
+Select the major cells of `𝕨` at the indices in `𝕩`.
+
+ 2‿0 ⊏ ⟨1, 2, 3⟩
+
+ a ← 3‿3 ⥊ ↕9
+
+ 2‿0 ⊏ a
+
+