Vyxapedia

Element - Þİ - First n Items and Rest

Characters: Þ, İ


Description

Push the first n items of a, then the rest of a


Overloads

  • lst-int - a[:b], a[b:]
  • int-lst - b[:a], b[a:]

Examples

  • ⟨1|2|3|4|5|6|7|8|9⟩ 4 Þİ = ⟨5|6|7|8|9⟩