ImmutableList<T>.FindLastIndex 메서드

정의

오버로드

FindLastIndex(Int32, Int32, Predicate<T>)

지정된 조건자에 정의된 조건과 일치하는 요소를 검색하여 지정된 수의 요소가 들어 있고 지정된 인덱스에서 끝나는 변경할 수 없는 목록의 요소 범위에서 일치하는 요소 중 마지막으로 나타나는 요소의 0부터 시작하는 인덱스를 반환합니다.

FindLastIndex(Predicate<T>)

지정된 조건자에 정의된 조건과 일치하는 요소를 검색하여 전체 변경할 수 없는 목록에서 일치하는 요소 중 마지막으로 나타나는 요소의 0부터 시작하는 인덱스를 반환합니다.

FindLastIndex(Int32, Predicate<T>)

지정된 조건자에 정의된 조건과 일치하는 요소를 검색하여 첫 번째 요소에서 지정된 인덱스로 확장하는 변경할 수 없는 목록의 요소 범위에서 일치하는 요소 중 마지막으로 나타나는 요소의 0부터 시작하는 인덱스를 반환합니다.

FindLastIndex(Int32, Int32, Predicate<T>)

Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs

지정된 조건자에 정의된 조건과 일치하는 요소를 검색하여 지정된 수의 요소가 들어 있고 지정된 인덱스에서 끝나는 변경할 수 없는 목록의 요소 범위에서 일치하는 요소 중 마지막으로 나타나는 요소의 0부터 시작하는 인덱스를 반환합니다.

public:
 virtual int FindLastIndex(int startIndex, int count, Predicate<T> ^ match);
public:
 int FindLastIndex(int startIndex, int count, Predicate<T> ^ match);
public int FindLastIndex (int startIndex, int count, Predicate<T> match);
abstract member FindLastIndex : int * int * Predicate<'T> -> int
override this.FindLastIndex : int * int * Predicate<'T> -> int
member this.FindLastIndex : int * int * Predicate<'T> -> int
Public Function FindLastIndex (startIndex As Integer, count As Integer, match As Predicate(Of T)) As Integer

매개 변수

startIndex
Int32

역방향 검색의 0부터 시작하는 인덱스입니다.

count
Int32

검색할 섹션에 있는 요소 수입니다.

match
Predicate<T>

검색할 요소의 조건을 정의하는 대리자입니다.

반환

match에 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 마지막으로 나타나는 요소의 0부터 시작하는 인덱스이고, 그렇지 않으면 -1입니다.

적용 대상

FindLastIndex(Predicate<T>)

Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs

지정된 조건자에 정의된 조건과 일치하는 요소를 검색하여 전체 변경할 수 없는 목록에서 일치하는 요소 중 마지막으로 나타나는 요소의 0부터 시작하는 인덱스를 반환합니다.

public:
 virtual int FindLastIndex(Predicate<T> ^ match);
public:
 int FindLastIndex(Predicate<T> ^ match);
public int FindLastIndex (Predicate<T> match);
abstract member FindLastIndex : Predicate<'T> -> int
override this.FindLastIndex : Predicate<'T> -> int
member this.FindLastIndex : Predicate<'T> -> int
Public Function FindLastIndex (match As Predicate(Of T)) As Integer

매개 변수

match
Predicate<T>

검색할 요소의 조건을 정의하는 대리자입니다.

반환

match에 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 마지막으로 나타나는 요소의 0부터 시작하는 인덱스이고, 그렇지 않으면 -1입니다.

적용 대상

FindLastIndex(Int32, Predicate<T>)

Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs

지정된 조건자에 정의된 조건과 일치하는 요소를 검색하여 첫 번째 요소에서 지정된 인덱스로 확장하는 변경할 수 없는 목록의 요소 범위에서 일치하는 요소 중 마지막으로 나타나는 요소의 0부터 시작하는 인덱스를 반환합니다.

public:
 virtual int FindLastIndex(int startIndex, Predicate<T> ^ match);
public:
 int FindLastIndex(int startIndex, Predicate<T> ^ match);
public int FindLastIndex (int startIndex, Predicate<T> match);
abstract member FindLastIndex : int * Predicate<'T> -> int
override this.FindLastIndex : int * Predicate<'T> -> int
member this.FindLastIndex : int * Predicate<'T> -> int
Public Function FindLastIndex (startIndex As Integer, match As Predicate(Of T)) As Integer

매개 변수

startIndex
Int32

역방향 검색의 0부터 시작하는 인덱스입니다.

match
Predicate<T>

검색할 요소의 조건을 정의하는 대리자입니다.

반환

match에 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 마지막으로 나타나는 요소의 0부터 시작하는 인덱스이고, 그렇지 않으면 -1입니다.

적용 대상