5 references to AvailableMemory
Microsoft.AspNetCore.Components.Server (5)
BlazorPack\SequenceOfT.cs (5)
320
internal Memory<T> RemainingMemory => this.
AvailableMemory
.Slice(this.End);
325
internal Span<T> RemainingSpan => this.
AvailableMemory
.Span.Slice(this.End);
347
internal int WritableBytes => this.
AvailableMemory
.Length - this.End;
414
this.Memory = this.
AvailableMemory
.Slice(0, this.Start + this.Length);
443
this.
AvailableMemory
.Span.Slice(startIndex, length).Clear();