<PackageReference Include="System.Text.Json" Version="11.0.0-preview.7.26381.103" />

System.Text.Json.BitStack

struct BitStack
namespace System.Text.Json { internal struct BitStack { public int CurrentDepth { get; } public void PushTrue(); public void PushFalse(); public bool Pop(); public bool Peek(); public void SetFirstBit(); public void ResetFirstBit(); } }