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

Method Reset

csharp/src/Fory/ByteBuffer.cs:459–464  ·  view source on GitHub ↗
(ReadOnlySpan<byte> data)

Source from the content-addressed store, hash-verified

457 public int Remaining => _length - _cursor;
458
459 public void Reset(ReadOnlySpan<byte> data)
460 {
461 _storage = data.ToArray();
462 _length = _storage.Length;
463 _cursor = 0;
464 }
465
466 public void Reset(byte[] bytes)
467 {

Callers

nothing calls this directly

Calls 1

ToArrayMethod · 0.80

Tested by

no test coverage detected