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

◆ RotateRight() [2/2]

static ulong System.Numerics.BitOperations.RotateRight ( ulong value,
int offset )
inlinestatic

Definition at line 381 of file BitOperations.cs.

382 {
383 return (value >> offset) | (value << 64 - offset);
384 }

References System.offset, and System.value.