Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
RotateLeft()
[1/2]
static char
IBinaryInteger
< char >. System.Char.RotateLeft
(
char
value
,
int
rotateAmount
)
inline
static
Definition at line
851
of file
Char.cs
.
852
{
853
return
(
char
)(((uint)
value
<< (rotateAmount & 0xF)) | (uint)((int)
value
>> ((16 - rotateAmount) & 0xF)));
854
}
System.ExceptionArgument.value
@ value
References
System.value
.
System
Char
Generated by
1.10.0