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

Method Advance

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

Source from the content-addressed store, hash-verified

356 }
357
358 [MethodImpl(MethodImplOptions.AggressiveInlining)]
359 public void Advance(int count)
360 {
361 if (count < 0 || _count + count > _storage.Length)
362 {
363 throw new ArgumentOutOfRangeException(nameof(count));
364 }
365
366 _count += count;
367 }
368
369 [MethodImpl(MethodImplOptions.AggressiveInlining)]
370 public void SetByte(int index, byte value)

Callers 4

WriteLatin1Method · 0.80
WriteUtf8Method · 0.80
WriteUtf16Method · 0.80

Calls

no outgoing calls