rotateRight<T> method

List<T> rotateRight<T>(
  1. int amount
)

Implementation

List<T> rotateRight<T>(int amount) => rotate(amount, true);