MemoryExtensions.LastIndexOfAnyInRange メソッド

定義

オーバーロード

LastIndexOfAnyInRange<T>(ReadOnlySpan<T>, T, T)

と を含む範囲内 lowInclusive の値の最後のインデックスを highInclusive検索します。

LastIndexOfAnyInRange<T>(Span<T>, T, T)

と を含む範囲内 lowInclusive の値の最後のインデックスを highInclusive検索します。

LastIndexOfAnyInRange<T>(ReadOnlySpan<T>, T, T)

ソース:
MemoryExtensions.cs
ソース:
MemoryExtensions.cs

と を含む範囲内 lowInclusive の値の最後のインデックスを highInclusive検索します。

public:
generic <typename T>
 where T : IComparable<T>[System::Runtime::CompilerServices::Extension]
 static int LastIndexOfAnyInRange(ReadOnlySpan<T> span, T lowInclusive, T highInclusive);
public static int LastIndexOfAnyInRange<T> (this ReadOnlySpan<T> span, T lowInclusive, T highInclusive) where T : IComparable<T>;
static member LastIndexOfAnyInRange : ReadOnlySpan<'T (requires 'T :> IComparable<'T>)> * 'T * 'T -> int (requires 'T :> IComparable<'T>)
<Extension()>
Public Function LastIndexOfAnyInRange(Of T As IComparable(Of T)) (span As ReadOnlySpan(Of T), lowInclusive As T, highInclusive As T) As Integer

型パラメーター

T

スパンと値の型。

パラメーター

span
ReadOnlySpan<T>

検索するスパン。

lowInclusive
T

検索対象の範囲の下限 (両端を含む)。

highInclusive
T

検索対象の範囲の上限 (両端を含む)。

戻り値

指定した範囲内の値が最後に出現したスパン内のインデックス。 すべての値が指定した範囲外の場合は、-1 を返します。

適用対象

LastIndexOfAnyInRange<T>(Span<T>, T, T)

ソース:
MemoryExtensions.cs
ソース:
MemoryExtensions.cs

と を含む範囲内 lowInclusive の値の最後のインデックスを highInclusive検索します。

public:
generic <typename T>
 where T : IComparable<T>[System::Runtime::CompilerServices::Extension]
 static int LastIndexOfAnyInRange(Span<T> span, T lowInclusive, T highInclusive);
public static int LastIndexOfAnyInRange<T> (this Span<T> span, T lowInclusive, T highInclusive) where T : IComparable<T>;
static member LastIndexOfAnyInRange : Span<'T (requires 'T :> IComparable<'T>)> * 'T * 'T -> int (requires 'T :> IComparable<'T>)
<Extension()>
Public Function LastIndexOfAnyInRange(Of T As IComparable(Of T)) (span As Span(Of T), lowInclusive As T, highInclusive As T) As Integer

型パラメーター

T

スパンと値の型。

パラメーター

span
Span<T>

検索するスパン。

lowInclusive
T

検索対象の範囲の下限 (両端を含む)。

highInclusive
T

検索対象の範囲の上限 (両端を含む)。

戻り値

指定した範囲内の値が最後に出現したスパン内のインデックス。 すべての値が指定した範囲外の場合は、-1 を返します。

適用対象