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

◆ RotateLeft() [2/2]

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

Definition at line 367 of file BitOperations.cs.

368 {
369 return (value << offset) | (value >> 64 - offset);
370 }

References System.offset, and System.value.