menu
yjy_image_3_3_0 package
documentation
image.dart
BitUtility
rotateRight static method
rotateRight static method
dark_mode
light_mode
rotateRight
static method
int
rotateRight
(
int
value
,
int
shift
)
Implementation
static int rotateRight(int value, int shift) => (value >> shift) | (value << (32 - shift));
yjy_image_3_3_0 package
documentation
image
BitUtility
rotateRight static method
BitUtility class