rotateRight method

LogicValue rotateRight(
  1. int rotateAmount
)

Rotates this value by rotateAmount to the right.

Implementation

LogicValue rotateRight(int rotateAmount) =>
    _rotate(rotateAmount, direction: RotateDirection.right);