Solidus (/)

/ 𝕩: Indices

→full documentation

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

→full documentation

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

Unit 𝕨 applies to all elements.

↗️
    3 / "copy"
"cccooopppyyy"

    101 / 123
⟨ 1 3 ⟩