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