<PackageReference Include="System.Text.Json" Version="11.0.0-rc.1.26425.128" />

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); } }