rotateRight static method

int rotateRight(
  1. int value,
  2. int shift
)

Implementation

static int rotateRight(int value, int shift) =>
    (value >> shift) | (value << (32 - shift));