BuffersExtensions.PositionOf<T>(ReadOnlySequence<T>, T) Method

Definition

Returns the position of the first occurrence of item in the ReadOnlySequence<T>.

public:
generic <typename T>
 where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
 static Nullable<SequencePosition> PositionOf(System::Buffers::ReadOnlySequence<T> % source, T value);
public static SequencePosition? PositionOf<T> (this in System.Buffers.ReadOnlySequence<T> source, T value) where T : IEquatable<T>;
static member PositionOf : ReadOnlySequence * 'T -> Nullable<SequencePosition> (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function PositionOf(Of T As IEquatable(Of T)) (ByRef source As ReadOnlySequence(Of T), value As T) As Nullable(Of SequencePosition)

Type Parameters

T

The type of the items in the ReadOnlySequence<T>.

Parameters

value
T

The item to find in the ReadOnlySequence<T>.

Returns

An object whose GetInteger() method returns the position of the first occurrence of item, or an object whose Nullable<SequencePosition>.HasValue property is false .

Applies to