Udostępnij za pośrednictwem


List.tryFind <'T> Funkcja (F#)

Zwraca pierwszy element, dla którego dana funkcja zwraca true. zwraca None , jeśli element nie istnieje.

Ścieżka obszaru nazw/modułu: Microsoft.FSharp.Collections.List

Zestaw: FSharp.Core (w FSharp.Core.dll)

// Signature:
List.tryFind : ('T -> bool) -> 'T list -> 'T option

// Usage:
List.tryFind predicate list

Parametry

  • predicate
    Type: 'T ->bool

    Funkcja testowania wprowadzania elementów.

  • list
    Type: 'Tlist

    Lista wejściowego.

Wartość zwracana

Pierwszy element, dla którego predykat zwraca wartość true lub Brak, jeśli każdy element przyjmuje wartość FAŁSZ.

Uwagi

Ta funkcja o nazwie TryFind w skompilowane zestawy.Jeżeli języka, niż F# lub przez odbicie, uzyskują dostęp do funkcji, należy użyć tej nazwy.

Przykład

Poniższy przykład kodu ilustruje użycie List.tryFind i 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."

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

Moduł Collections.list (F#)

Obszar nazw Microsoft.FSharp.Collections (F#)