(int count)
| 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 | { |
no outgoing calls