internal static long?ReadInt64Wrapper(ref ParseContext ctx)
 {
     return(ParsingPrimitivesWrappers.ReadInt64Wrapper(ref ctx.buffer, ref ctx.state));
 }
 internal static uint?ReadUInt32Wrapper(ref ParseContext ctx)
 {
     return(ParsingPrimitivesWrappers.ReadUInt32Wrapper(ref ctx.buffer, ref ctx.state));
 }
 internal static double?ReadDoubleWrapperSlow(ref ParseContext ctx)
 {
     return(ParsingPrimitivesWrappers.ReadDoubleWrapperSlow(ref ctx.buffer, ref ctx.state));
 }
 internal static bool?ReadBoolWrapper(ref ParseContext ctx)
 {
     return(ParsingPrimitivesWrappers.ReadBoolWrapper(ref ctx.buffer, ref ctx.state));
 }
 internal static float?ReadFloatWrapperSlow(ref ParseContext ctx)
 {
     return(ParsingPrimitivesWrappers.ReadFloatWrapperSlow(ref ctx.buffer, ref ctx.state));
 }