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
)
inline
static
Definition at line
311
of file
SByte.cs
.
312
{
313
return
(sbyte)(((byte)
value
>> (rotateAmount & 7)) | (
value
<< ((8 - rotateAmount) & 7)));
314
}
System.ExceptionArgument.value
@ value
References
System.value
.
System
SByte
Generated by
1.10.0