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

Method ReadSpan

csharp/src/Fory/ByteBuffer.cs:704–710  ·  view source on GitHub ↗
(int count)

Source from the content-addressed store, hash-verified

702 }
703
704 public ReadOnlySpan<byte> ReadSpan(int count)
705 {
706 CheckBound(count);
707 ReadOnlySpan<byte> span = _storage.AsSpan(_cursor, count);
708 _cursor += count;
709 return span;
710 }
711
712 public void Skip(int count)
713 {

Callers 2

ReadStringMethod · 0.80

Calls

no outgoing calls