List.findIndex<'T> — Funkcja (F#)
Zwraca indeks pierwszego elementu na liście danego predykat spełnia.Podnosi KeyNotFoundException , jeśli element nie istnieje.
Ścieżka obszaru nazw/modułu: Microsoft.FSharp.Collections.List
Zgromadzenie: FSharp.Core (w FSharp.Core.dll)
// Signature:
List.findIndex : ('T -> bool) -> 'T list -> int
// Usage:
List.findIndex predicate list
Parametry
predicate
Type: 'T ->boolFunkcja testowania wprowadzania elementów.
list
Type: 'TlistLista wejściowego.
Wyjątki
Wyjątek |
Warunek |
---|---|
Generowane, gdy predykat jest spełniony dla wszystkich elementów listy. |
Wartość zwracana
Indeks pierwszego elementu, który spełnia predykat.
Uwagi
Ta funkcja o nazwie FindIndex w skompilowane zestawy.Jeśli funkcja dostęp z języka .net niż F# lub przez odbicie, należy użyć tej nazwy.
Przykład
Poniższy kod pokazuje, jak używać List.findIndex i porównuje jej zachowanie do tego List.find.
let list1 = [ 2 .. 100 ]
let delta = 1.0e-10
let isPerfectSquare (x:int) =
let y = sqrt (float x)
abs(y - round y) < delta
let isPerfectCube (x:int) =
let y = System.Math.Pow(float x, 1.0/3.0)
abs(y - round y) < delta
let element = List.find (fun elem -> isPerfectSquare elem && isPerfectCube elem) list1
let index = List.findIndex (fun elem -> isPerfectSquare elem && isPerfectCube elem) list1
printfn "The first element that is both a square and a cube is %d and its index is %d." element index
Dane wyjściowe
Platformy
Windows 8, Windows 7, Windows Server 2012 Windows Server 2008 R2
Informacje o wersji
F# Core wersji biblioteki
Obsługiwane: 2.0, 4.0, przenośne