ImmutableList<T>.Builder.FindIndex メソッド
定義
オーバーロード
FindIndex(Int32, Int32, Predicate<T>) |
変更できないリストのうち、指定したインデックスから始まり、指定した要素数が含まれる範囲の中で、指定した述語によって定義される条件に一致する要素を検索し、そのうち最もインデックス番号の小さい要素の 0 から始まるインデックスを返します。Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the immutable list that starts at the specified index and contains the specified number of elements. |
FindIndex(Predicate<T>) |
変更できないリスト全体から、指定した述語によって定義される条件に一致する要素を検索し、最もインデックス番号の小さい要素の 0 から始まるインデックスを返します。Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire immutable list. |
FindIndex(Int32, Predicate<T>) |
変更できないリストの指定したインデックスから最後の要素までの範囲内で、指定した述語によって定義される条件に一致する要素を検索し、最もインデックス番号の小さい要素の 0 から始まるインデックスを返します。Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the immutable list that extends from the specified index to the last element. |
FindIndex(Int32, Int32, Predicate<T>)
変更できないリストのうち、指定したインデックスから始まり、指定した要素数が含まれる範囲の中で、指定した述語によって定義される条件に一致する要素を検索し、そのうち最もインデックス番号の小さい要素の 0 から始まるインデックスを返します。Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the immutable list that starts at the specified index and contains the specified number of elements.
public:
virtual int FindIndex(int startIndex, int count, Predicate<T> ^ match);
public:
int FindIndex(int startIndex, int count, Predicate<T> ^ match);
public int FindIndex (int startIndex, int count, Predicate<T> match);
abstract member FindIndex : int * int * Predicate<'T> -> int
override this.FindIndex : int * int * Predicate<'T> -> int
member this.FindIndex : int * int * Predicate<'T> -> int
Public Function FindIndex (startIndex As Integer, count As Integer, match As Predicate(Of T)) As Integer
パラメーター
- startIndex
- Int32
検索の開始位置を示す 0 から始まるインデックス。The zero-based starting index of the search.
- count
- Int32
検索対象の範囲内にある要素の数。The number of elements in the section to search.
- match
- Predicate<T>
検索する要素の条件を定義するデリゲート。The delegate that defines the conditions of the element to search for.
戻り値
match
で定義された条件と一致する要素が存在した場合、最もインデックス番号の小さい要素の 0 から始まるインデックス。それ以外の場合は -1。The zero-based index of the first occurrence of an element that matches the conditions defined by match
, if found; otherwise, -1.
適用対象
FindIndex(Predicate<T>)
変更できないリスト全体から、指定した述語によって定義される条件に一致する要素を検索し、最もインデックス番号の小さい要素の 0 から始まるインデックスを返します。Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire immutable list.
public:
virtual int FindIndex(Predicate<T> ^ match);
public:
int FindIndex(Predicate<T> ^ match);
public int FindIndex (Predicate<T> match);
abstract member FindIndex : Predicate<'T> -> int
override this.FindIndex : Predicate<'T> -> int
member this.FindIndex : Predicate<'T> -> int
Public Function FindIndex (match As Predicate(Of T)) As Integer
パラメーター
- match
- Predicate<T>
検索する要素の条件を定義するデリゲート。The delegate that defines the conditions of the element to search for.
戻り値
match
で定義された条件と一致する要素が存在した場合、最もインデックス番号の小さい要素の 0 から始まるインデックス。それ以外の場合は -1。The zero-based index of the first occurrence of an element that matches the conditions defined by match
, if found; otherwise, -1.
適用対象
FindIndex(Int32, Predicate<T>)
変更できないリストの指定したインデックスから最後の要素までの範囲内で、指定した述語によって定義される条件に一致する要素を検索し、最もインデックス番号の小さい要素の 0 から始まるインデックスを返します。Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the immutable list that extends from the specified index to the last element.
public:
virtual int FindIndex(int startIndex, Predicate<T> ^ match);
public:
int FindIndex(int startIndex, Predicate<T> ^ match);
public int FindIndex (int startIndex, Predicate<T> match);
abstract member FindIndex : int * Predicate<'T> -> int
override this.FindIndex : int * Predicate<'T> -> int
member this.FindIndex : int * Predicate<'T> -> int
Public Function FindIndex (startIndex As Integer, match As Predicate(Of T)) As Integer
パラメーター
- startIndex
- Int32
検索の開始位置を示す 0 から始まるインデックス。The zero-based starting index of the search.
- match
- Predicate<T>
検索する要素の条件を定義するデリゲート。The delegate that defines the conditions of the element to search for.
戻り値
match
で定義された条件と一致する要素が存在した場合、最もインデックス番号の小さい要素の 0 から始まるインデックス。それ以外の場合は -1。The zero-based index of the first occurrence of an element that matches the conditions defined by match
, if found; otherwise, -1.