Element - ⟇ - Remove at Index
Characters:
⟇
Description
Returns every item in a list except the item at the given index.
Overloads
any-num-Remove item b of anum-any-Remove item a of b
Examples
⟨1|2|3⟩ 0 ⟇=⟨2|3⟩⟨1|2|3⟩ 1 ⟇=⟨1|3⟩3 ⟨1|2|3|1⟩ ⟇=⟨1|2|3⟩0 ⟨1|2|3|1⟩ ⟇=⟨2|3|1⟩