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