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

Method ReadTaggedUInt64

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

Source from the content-addressed store, hash-verified

671 }
672
673 public ulong ReadTaggedUInt64()
674 {
675 uint first = ReadUInt32();
676 if ((first & 1) == 0)
677 {
678 return first >> 1;
679 }
680
681 MoveBack(3);
682 return ReadUInt64();
683 }
684
685 public float ReadFloat32()
686 {

Callers 5

SkipPayloadMethod · 0.80
ReadInt64FastPayloadMethod · 0.80
ReadScalarPayloadMethod · 0.80
ReadAnyValueMethod · 0.80
AssertTaggedUInt64Method · 0.80

Calls

no outgoing calls

Tested by 1

AssertTaggedUInt64Method · 0.64