Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
RotateLeft()
[1/2]
static sbyte
IBinaryInteger
< sbyte >. System.SByte.RotateLeft
(
sbyte
value
,
int
rotateAmount
)
inline
static
Definition at line
305
of file
SByte.cs
.
306
{
307
return
(sbyte)((
value
<< (rotateAmount & 7)) | ((byte)
value
>> ((8 - rotateAmount) & 7)));
308
}
System.ExceptionArgument.value
@ value
References
System.value
.
System
SByte
Generated by
1.10.0