Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ RotateRight() [1/2]

static int IBinaryInteger< int >. System.Int32.RotateRight ( int value,
int rotateAmount )
inlinestatic

Definition at line 300 of file Int32.cs.

301 {
302 return (int)BitOperations.RotateRight((uint)value, rotateAmount);
303 }
static uint RotateRight(uint value, int offset)

References System.Numerics.BitOperations.RotateRight(), and System.value.