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