System.Diagnostics.BitMapper
struct BitMapper
namespace System.Diagnostics
{
internal ref struct BitMapper
{
public int MaxIndex { get; }
public BitMapper(Span<ulong> bitMap);
public bool SetBit(int index);
public bool IsSet(int index);
}
}