Vyxapedia

Element - Ǔ - Rotate Left

Characters: Ǔ


Description

Rotate Left / Rotate Left Once


Overloads

  • any-num - rotate_left(a,b)
  • any-any - a,(b[1:]+b[:1])

Examples

  • 3 ⟨4|5|5|6⟩ Ǔ = ⟨5|5|6|4⟩
  • 3 ⟨1|2|3|4⟩ Ǔ = ⟨2|3|4|1⟩
  • 3 `abcd` Ǔ = `bcda`
  • 3 `abcd` 4 Ǔ = `abcd`
  • 3 `abcd` -1 Ǔ = `dabc`