2 writes to End
Microsoft.AspNetCore.Components.Server (2)
BlazorPack\SequenceOfT.cs (2)
388
this.
End
= 0;
424
this.
End
+= count;
8 references to End
Microsoft.AspNetCore.Components.Server (8)
BlazorPack\SequenceOfT.cs (8)
109
? new ReadOnlySequence<T>(sequence.first, sequence.first.Start, sequence.last, sequence.last.
End
)
320
internal Memory<T> RemainingMemory => this.AvailableMemory.Slice(this.
End
);
325
internal Span<T> RemainingSpan => this.AvailableMemory.Span.Slice(this.
End
);
341
internal int Length => this.
End
- this.Start;
345
/// It is the amount of bytes between <see cref="Length"/> and <see cref="
End
"/>.
347
internal int WritableBytes => this.AvailableMemory.Length - this.
End
;
383
this.ClearReferences(this.Start, this.
End
);
423
Requires.Range(count >= 0 && this.
End
+ count <= this.Memory.Length, nameof(count));