5 references to BitMask
Microsoft.Data.Analysis (5)
Utils\BitUtility.cs (5)
57
(data[index / 8] &
BitMask
[index % 8]) != 0;
61
data[index / 8] &= (byte)~
BitMask
[index % 8];
66
data[index / 8] |=
BitMask
[index % 8];
74
? (byte)(data[idx] |
BitMask
[mod])
75
: (byte)(data[idx] & ~
BitMask
[mod]);