Vyxapedia

Element - ǔ - Rotate Right

Characters: ǔ


Description

Rotate Right / Rotate Right Once


Overloads

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

Examples

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