List.tryFindIndex<'T> 함수(F#)
목록에서 지정된 조건자를 만족하는 첫째 요소의 인덱스를 반환합니다.이러한 요소가 없으면 None을 반환합니다.
네임스페이스/모듈 경로: Microsoft.FSharp.Collections.List
어셈블리: FSharp.Core(FSharp.Core.dll)
// Signature:
List.tryFindIndex : ('T -> bool) -> 'T list -> int option
// Usage:
List.tryFindIndex predicate list
매개 변수
반환 값
조건자가 true를 반환하는 첫째 요소의 인덱스이거나, 모든 요소의 결과가 false인 경우 None입니다.
설명
컴파일된 어셈블리에서 이 함수의 이름은 TryFindIndex입니다.F# 이외의 언어에서 함수에 액세스하거나 리플렉션을 통해 함수에 액세스하는 경우 이 이름을 사용합니다.
예제
다음 코드 예제에서는 List.tryFind 및 List.tryFindIndex를 사용하는 방법을 보여 줍니다.
let list1d = [1; 3; 7; 9; 11; 13; 15; 19; 22; 29; 36]
let isEven x = x % 2 = 0
match List.tryFind isEven list1d with
| Some value -> printfn "The first even value is %d." value
| None -> printfn "There is no even value in the list."
match List.tryFindIndex isEven list1d with
| Some value -> printfn "The first even value is at position %d." value
| None -> printfn "There is no even value in the list."
Output
플랫폼
Windows Windows 서버 2012, Windows Server 2008 R2, Windows 7, 8
버전 정보
F# 코어 라이브러리 버전
지원: 2.0, 4.0, 노트북