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

◆ RotateRight() [1/2]

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

Definition at line 311 of file SByte.cs.

312 {
313 return (sbyte)(((byte)value >> (rotateAmount & 7)) | (value << ((8 - rotateAmount) & 7)));
314 }

References System.value.