Udostępnij za pośrednictwem


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 ->bool

    Funkcja testowania wprowadzania elementów.

  • list
    Type: 'Tlist

    Lista wejściowego.

Wyjątki

Wyjątek

Warunek

ArgumentException

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

Zobacz też

Informacje

Collections.List — Moduł (F#)

Microsoft.FSharp.Collections — Przestrzeń nazw (F#)