Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
RotateLeft()
[2/2]
static ulong System.Numerics.BitOperations.RotateLeft
(
ulong
value
,
int
offset
)
inline
static
Definition at line
367
of file
BitOperations.cs
.
368
{
369
return
(
value
<<
offset
) | (
value
>> 64 -
offset
);
370
}
System.ExceptionArgument.value
@ value
System.ExceptionArgument.offset
@ offset
References
System.offset
, and
System.value
.
System
Numerics
BitOperations
Generated by
1.10.0