ImmutableList<T>.FindIndex 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
FindIndex(Predicate<T>) |
지정된 조건자에 정의된 조건과 일치하는 요소를 검색하여 전체 변경할 수 없는 목록에서 일치하는 요소 중 첫 번째로 나타나는 요소의 0부터 시작하는 인덱스를 반환합니다. |
FindIndex(Int32, Predicate<T>) |
지정된 조건자에 정의된 조건과 일치하는 요소를 검색하여 지정된 인덱스에서 마지막 요소로 확장되는 변경할 수 없는 목록의 요소 범위 내에서 일치하는 요소 중 첫 번째 요소의 0부터 시작하는 인덱스를 반환합니다. |
FindIndex(Int32, Int32, Predicate<T>) |
지정된 조건자에 정의된 조건과 일치하는 요소를 검색하고 지정된 인덱스부터 시작하여 지정된 수의 요소를 포함하는 변경할 수 없는 목록의 요소 범위에서 일치하는 요소 중 첫 번째로 나타나는 요소의 0부터 시작하는 인덱스를 반환합니다. |
FindIndex(Predicate<T>)
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
지정된 조건자에 정의된 조건과 일치하는 요소를 검색하여 전체 변경할 수 없는 목록에서 일치하는 요소 중 첫 번째로 나타나는 요소의 0부터 시작하는 인덱스를 반환합니다.
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>
검색할 요소의 조건을 정의하는 대리자입니다.
반환
일치 항목으로 정의된 조건과 일치하는 요소의 첫 번째 항목(있는 경우)의 인덱스(0부터 시작)입니다. 그렇지 않으면 -1입니다.
적용 대상
FindIndex(Int32, Predicate<T>)
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
지정된 조건자에 정의된 조건과 일치하는 요소를 검색하여 지정된 인덱스에서 마지막 요소로 확장되는 변경할 수 없는 목록의 요소 범위 내에서 일치하는 요소 중 첫 번째 요소의 0부터 시작하는 인덱스를 반환합니다.
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부터 시작하는 인덱스입니다.
- match
- Predicate<T>
검색할 요소의 조건을 정의하는 대리자입니다.
반환
일치 항목에 의해 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 처음으로 나타나는 요소의 0부터 시작하는 인덱스이고, 그렇지 않으면 -1입니다.
적용 대상
FindIndex(Int32, Int32, Predicate<T>)
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
- Source:
- ImmutableList_1.cs
지정된 조건자에 정의된 조건과 일치하는 요소를 검색하고 지정된 인덱스부터 시작하여 지정된 수의 요소를 포함하는 변경할 수 없는 목록의 요소 범위에서 일치하는 요소 중 첫 번째로 나타나는 요소의 0부터 시작하는 인덱스를 반환합니다.
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부터 시작하는 인덱스입니다.
- count
- Int32
검색할 섹션에 있는 요소 수입니다.
- match
- Predicate<T>
검색할 요소의 조건을 정의하는 대리자입니다.
반환
일치 항목에 의해 정의된 조건과 일치하는 요소가 있으면 일치하는 요소 중 처음으로 나타나는 요소의 0부터 시작하는 인덱스이고, 그렇지 않으면 -1입니다.
적용 대상
.NET