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

Method ReadVarInt64

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

Source from the content-addressed store, hash-verified

653 }
654
655 public long ReadVarInt64()
656 {
657 ulong encoded = ReadVarUInt64();
658 return unchecked((long)((encoded >> 1) ^ (~(encoded & 1UL) + 1UL)));
659 }
660
661 public long ReadTaggedInt64()
662 {

Callers 12

SkipPayloadMethod · 0.80
ReadDataMethod · 0.80
ReadInt64FastPayloadMethod · 0.80
ReadScalarPayloadMethod · 0.80
ReadMethod · 0.80
ReadDateMethod · 0.80
ReadDurationMethod · 0.80
VarInt64RoundTripMethod · 0.80
CaseBufferVarMethod · 0.80

Calls

no outgoing calls

Tested by 5

VarInt64RoundTripMethod · 0.64
CaseBufferVarMethod · 0.64