RotateLeftFixed constructor

RotateLeftFixed(
  1. Logic original,
  2. int rotateAmount, {
  3. String name = 'rotate_fixed',
})

Rotates original by rotateAmount to the left.

Implementation

RotateLeftFixed(Logic original, int rotateAmount, {super.name})
    : super(RotateDirection.left, original, rotateAmount);