highBitsToInt static method

int highBitsToInt(
  1. int value
)

Implementation

static int highBitsToInt(int value) => (value & 0xFF) >> 4;