System.Text.Json.Serialization.ValueBitArray
struct ValueBitArray
namespace System.Text.Json.Serialization
{
internal readonly ref struct ValueBitArray
{
public const int ScratchBufferSize = 4;
public bool IsEmpty { get; }
public bool this[int index] { get; set; }
public ValueBitArray(int bitCount, Span<ulong> stackBuffer, ulong initialWordValue = 0);
public void Clear();
public void IntersectWith(ValueBitArray other);
}
}