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