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
)
inline
static
Definition at line
301
of file
Byte.cs
.
302
{
303
return
(
byte
)((
value
<< (rotateAmount & 7)) | (
value
>> ((8 - rotateAmount) & 7)));
304
}
System.ExceptionArgument.value
@ value
References
System.value
.
System
Byte
Generated by
1.10.0