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

Method ReadTaggedInt64

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

Source from the content-addressed store, hash-verified

659 }
660
661 public long ReadTaggedInt64()
662 {
663 int first = ReadInt32();
664 if ((first & 1) == 0)
665 {
666 return first >> 1;
667 }
668
669 MoveBack(3);
670 return ReadInt64();
671 }
672
673 public ulong ReadTaggedUInt64()
674 {

Callers 5

SkipPayloadMethod · 0.45
ReadInt64FastPayloadMethod · 0.45
ReadScalarPayloadMethod · 0.45
ReadAnyValueMethod · 0.45
AssertTaggedInt64Method · 0.45

Calls

no outgoing calls

Tested by 1

AssertTaggedInt64Method · 0.36