MCPcopy Create free account
hub / github.com/apache/fory / ReadVarUInt36Small

Method ReadVarUInt36Small

csharp/src/Fory/ByteBuffer.cs:638–647  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

636 }
637
638 public ulong ReadVarUInt36Small()
639 {
640 ulong value = ReadVarUInt64();
641 if (value >= (1UL << 36))
642 {
643 throw new EncodingException("varuint36small overflow");
644 }
645
646 return value;
647 }
648
649 public int ReadVarInt32()
650 {

Callers 4

ReadStringMethod · 0.80
WriteAndReadStringMethod · 0.80
WriteAndReadStringMethod · 0.80

Calls

no outgoing calls

Tested by 3

WriteAndReadStringMethod · 0.64
WriteAndReadStringMethod · 0.64