Vyxapedia

Element - ȯ - Slice

Characters: ȯ


Description

Slice from an index to the end


Overloads

  • fun-num - first b positive integers for which a(x) is truthy
  • any-num - a[b:] (slice from b to the end)
  • str-str - vertically merge a and b

Examples

  • `hello` 2 ȯ = `llo`
  • `hello` -0.1 ȯ = `hello`
  • ⟨1|2|3⟩ 1 ȯ = ⟨2|3⟩
  • ⟨1|2|3⟩ -2 ȯ = ⟨2|3⟩
  • 123 1 ȯ = 23
  • 123 -2 ȯ = 23
  • -123 1 ȯ = 123
  • -123 -2 ȯ = 23
  • 5903432 2 ȯ = 3432