From ae513293cca5fb30dd59874e4e00c0eecab596f6 Mon Sep 17 00:00:00 2001 From: razetime Date: Thu, 20 Jan 2022 08:31:40 +0530 Subject: fix more h2 errors, generate index for repl help --- docs/help/insert.html | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 docs/help/insert.html (limited to 'docs/help/insert.html') diff --git a/docs/help/insert.html b/docs/help/insert.html new file mode 100644 index 00000000..52e42e55 --- /dev/null +++ b/docs/help/insert.html @@ -0,0 +1,32 @@ + + + + BQN: Acute Accent (`˝`) + + +

Acute Accent (˝)

+

𝔽˝ 𝕩: Insert

+

Fold over 𝕩 with 𝔽 from right to left i.e. Insert 𝔽 between the major cells of 𝕩.

+↗️
       a  33  9
+
+       +˝ a
+⟨ 9 12 15 ⟩
+
+       012 + 345 + 678
+⟨ 9 12 15 ⟩
+
+

𝕨 𝔽˝ 𝕩: Insert With initial

+

Monadic insert, but use 𝕨 as initial right argument.

+

If

+↗️
       a  33  9
+Error: Redefinition
+
+       111 +˝ a
+⟨ 10 13 16 ⟩
+
+       1 +˝ a
+⟨ 10 13 16 ⟩
+
+       012 + 345 + 678 + 111
+⟨ 10 13 16 ⟩
+
-- cgit v1.2.3