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

Method ReadUInt32

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

Source from the content-addressed store, hash-verified

515 }
516
517 public uint ReadUInt32()
518 {
519 CheckBound(4);
520 uint value = BinaryPrimitives.ReadUInt32LittleEndian(_storage.AsSpan(_cursor, 4));
521 _cursor += 4;
522 return value;
523 }
524
525 public int ReadInt32()
526 {

Callers 8

ReadInt64FastPayloadMethod · 0.80
ReadScalarPayloadMethod · 0.80
ReadTimestampMethod · 0.80
ReadDataMethod · 0.80
ReadAnyValueMethod · 0.80
ReadUInt32ArrayMethod · 0.80

Calls

no outgoing calls