Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Lzcnt.cs
Go to the documentation of this file.
2
4
5[Intrinsic]
6[CLSCompliant(false)]
7public abstract class Lzcnt : X86Base
8{
9 [Intrinsic]
10 public new abstract class X64 : X86Base.X64
11 {
12 public new static bool IsSupported => IsSupported;
13
14 public static ulong LeadingZeroCount(ulong value)
15 {
16 return LeadingZeroCount(value);
17 }
18 }
19
20 public new static bool IsSupported => IsSupported;
21
22 public static uint LeadingZeroCount(uint value)
23 {
24 return LeadingZeroCount(value);
25 }
26}
static ulong LeadingZeroCount(ulong value)
Definition Lzcnt.cs:14
static uint LeadingZeroCount(uint value)
Definition Lzcnt.cs:22