Função List.tryFind<'T> (F#)
Retorna o primeiro elemento para que retorna dados truede função. retornam None se nenhum tal elemento existe.
Namespace/Module Path: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (em FSharp.Core.dll)
// Signature:
List.tryFind : ('T -> bool) -> 'T list -> 'T option
// Usage:
List.tryFind predicate list
Parâmetros
predicate
Tipo: 'T ->boolA função para testar os elementos de entrada.
list
Tipo: 'TlistaA lista de entrada.
Valor de retorno
O primeiro elemento para o predicado retorna true, ou se nenhum cada elemento é avaliada como false.
Comentários
Essa função é chamada TryFind em assemblies compilados. Se você está acessando a função de um idioma diferente F#, ou com a reflexão, use este nome.
Exemplo
O exemplo de código a seguir ilustra o uso de List.tryFind e de 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."
Saída
Plataformas
O windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Informações de Versão
Versões da biblioteca principal de F#
Suportado em: 2,0, 4,0, portáteis