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

Method ReadUInt64

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

Source from the content-addressed store, hash-verified

528 }
529
530 public ulong ReadUInt64()
531 {
532 CheckBound(8);
533 ulong value = BinaryPrimitives.ReadUInt64LittleEndian(_storage.AsSpan(_cursor, 8));
534 _cursor += 8;
535 return value;
536 }
537
538 public long ReadInt64()
539 {

Callers 12

ReadInt64FastPayloadMethod · 0.80
ReadScalarPayloadMethod · 0.80
ReadDataMethod · 0.80
DecodeMethod · 0.80
ReadTypeMetaMethod · 0.80
ReadTypeInfoCoreMethod · 0.80
ReadNamedTypeInfoMethod · 0.80
ReadAnyTypeInfoMethod · 0.80
ReadAnyValueMethod · 0.80
ReadUInt64ArrayMethod · 0.80
TypeMetaBodyOffsetMethod · 0.80

Calls

no outgoing calls

Tested by 2

TypeMetaBodyOffsetMethod · 0.64