Array.tryFind <'T>. Função (F#)
Retorna o primeiro elemento para o qual a função determinada retorna true. Retornar None se não há tal elemento existe.
Caminho do namespace/módulo: Microsoft.FSharp.Collections.array
Assembly: FSharp.Core (em FSharp.Core.dll)
// Signature:
Array.tryFind : ('T -> bool) -> 'T [] -> 'T option
// Usage:
Array.tryFind predicate array
Parâmetros
predicate
Tipo: 'T -> boolA função para testar os elementos de entrada.
array
Tipo: 'T []A matriz de entrada.
Valor de retorno
O primeiro elemento que satisfaça o predicado ou None.
Comentários
Esta função é chamada de TryFind em módulos (assemblies) compilados. Se você estiver acessando a função de um.NET de idioma diferente, por exemplo, F#, ou através de reflexão, usar este nome.
Exemplo
O exemplo a seguir demonstra o uso de Array.tryFind para tentar localizar os elementos de matriz cubos perfeitos estejam perfeito quadrados.
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 lookForCubeAndSquare array1 =
let result = Array.tryFind (fun elem -> isPerfectSquare elem && isPerfectCube elem) array1
match result with
| Some x -> printfn "Found an element: %d" x
| None -> printfn "Failed to find a matching element."
lookForCubeAndSquare [| 1 .. 10 |]
lookForCubeAndSquare [| 100 .. 1000 |]
lookForCubeAndSquare [| 2 .. 50 |]
Plataformas
O Windows 7, SP2 do Windows Vista, Windows XP SP3, Windows XP Professional x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2
Informações sobre versão
O tempo de execução F#
Compatível com: 2.0, 4.0
Silverlight
Compatível com: 3