rotateLeft<T> method

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

Implementation

List<T> rotateLeft<T>(int amount) => rotate(amount, false);