Show / Hide Table of Contents

Interface IReadOnlySequenceSource<T>

Represents disposable source of ReadOnlySequence<T>.

Inherited Members
IDisposable.Dispose()
ISupplier<ReadOnlySequence<T>>.Invoke()
IFunctional.DynamicInvoke(scoped ref readonly Variant, int, scoped Variant)
IFunctional.GetArgument<T>(ref readonly Variant, int)
Namespace: DotNext.Buffers
Assembly: DotNext.IO.dll
Syntax
public interface IReadOnlySequenceSource<T> : IDisposable, ISupplier<ReadOnlySequence<T>>, IFunctional
Type Parameters
Name Description
T

The type of the elements in the sequence.

Properties

View Source

Sequence

Gets the sequence of elements associated with this source.

Declaration
ReadOnlySequence<T> Sequence { get; }
Property Value
Type Description
ReadOnlySequence<T>

The sequence of elements associated with this source.

Remarks

The sequence is no longer valid after calling of Dispose() method.

Extension Methods

BasicExtensions.As<T>(T)
BasicExtensions.IsBetween<T, TLowerBound, TUpperBound>(T, TLowerBound, TUpperBound)
BasicExtensions.IsOneOf<T>(T, params ReadOnlySpan<T>)
  • View Source
☀
☾
In this article
Back to top
Supported by the .NET Foundation
☀
☾