rotateLeft method

LogicValue rotateLeft(
  1. int rotateAmount
)

Rotates this value by rotateAmount to the left.

Implementation

LogicValue rotateLeft(int rotateAmount) =>
    _rotate(rotateAmount, direction: RotateDirection.left);