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

◆ RotateLeft() [1/2]

static byte IBinaryInteger< byte >. System.Byte.RotateLeft ( byte value,
int rotateAmount )
inlinestatic

Definition at line 301 of file Byte.cs.

302 {
303 return (byte)((value << (rotateAmount & 7)) | (value >> ((8 - rotateAmount) & 7)));
304 }

References System.value.