From 2c50d91ec7eb8bc7890befe874a0b93729c2437e Mon Sep 17 00:00:00 2001 From: razetime Date: Wed, 19 Jan 2022 22:48:16 +0530 Subject: add h2s remove copied output, ascii filenames --- docs/help/indices_replicate.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docs/help/indices_replicate.html (limited to 'docs/help/indices_replicate.html') diff --git a/docs/help/indices_replicate.html b/docs/help/indices_replicate.html new file mode 100644 index 00000000..53979e92 --- /dev/null +++ b/docs/help/indices_replicate.html @@ -0,0 +1,24 @@ + + + + BQN: Solidus (`/`) + + +

Solidus (/)

+

/ 𝕩: Indices

+

Repeat the index of each element in 𝕩 by the element's value. 𝕩 must be rank 1.

+↗️
       / 123
+⟨ 0 1 1 2 2 2 ⟩
+
+       / 101
+⟨ 0 2 ⟩
+
+

𝕨 / 𝕩: Replicate

+

Repeat each major cell in 𝕩 by the corresponding element in 𝕨.

+

Atomic 𝕨 applies to all elements.

+↗️
       3 / "copy"
+"cccooopppyyy"
+
+       101 / 123
+⟨ 1 3 ⟩
+
-- cgit v1.2.3