ImmutableList<T>.Builder.FindIndex 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
FindIndex(Int32, Predicate<T>) |
搜尋符合指定述詞所定義之條件的項目,並傳回不可變的清單中,從指定索引開始到最後一個項目的項目範圍內,第一個出現項目以零為起始的索引。 |
FindIndex(Int32, Int32, Predicate<T>) |
搜尋符合指定述詞所定義之條件的項目,並傳回不可變的清單中,從指定索引開始且包含指定項目數的項目範圍內,第一個出現項目以零為起始的索引。 |
FindIndex(Predicate<T>) |
搜尋符合指定述詞所定義之條件的項目,並傳回整個不可變清單內第一個出現項目之以零為起始的索引。 |
FindIndex(Int32, Predicate<T>)
搜尋符合指定述詞所定義之條件的項目,並傳回不可變的清單中,從指定索引開始到最後一個項目的項目範圍內,第一個出現項目以零為起始的索引。
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
搜尋之以零為起始的起始索引。
- match
- Predicate<T>
定義要搜尋項目之條件的委派。
傳回
第一次出現符合 match
所定義之條件的項目以零為起始的索引 (如有找到);否則為 -1。
適用於
FindIndex(Int32, Int32, Predicate<T>)
搜尋符合指定述詞所定義之條件的項目,並傳回不可變的清單中,從指定索引開始且包含指定項目數的項目範圍內,第一個出現項目以零為起始的索引。
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
搜尋之以零為起始的起始索引。
- count
- Int32
區段中要搜尋的項目數目。
- match
- Predicate<T>
定義要搜尋項目之條件的委派。
傳回
第一次出現符合 match
所定義之條件的項目以零為起始的索引 (如有找到);否則為 -1。
適用於
FindIndex(Predicate<T>)
搜尋符合指定述詞所定義之條件的項目,並傳回整個不可變清單內第一個出現項目之以零為起始的索引。
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>
定義要搜尋項目之條件的委派。
傳回
第一次出現符合 match
所定義之條件的項目以零為起始的索引 (如有找到);否則為 -1。