Array.Find <'T>. Função (F#)
Retorna o primeiro elemento para que a função retorna determinada true.Aumento KeyNotFoundException se nenhum tal elemento existe.
Namespace/Module Path: Microsoft.FSharp.Collections.Array
Assembly: FSharp.Core (em FSharp.Core.dll)
// Signature:
Array.find : ('T -> bool) -> 'T [] -> 'T
// Usage:
Array.find predicate array
Parâmetros
predicate
Tipo: 'T ->boolA função para testar os elementos de entrada.
array
Tipo: 'T[]A matriz de entrada.
Exceções
Exceção |
Condição |
---|---|
Lançada se predicate não retorna true para qualquer elemento. |
Valor de retorno
o primeiro elemento para que predicate retorna true.
Comentários
Essa função é chamada Find 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 a seguir demonstra o uso de Array.find e de Array.findIndex identificar o primeiro inteiro maior que 1 que é um quadrado e um cubo.
let arrayA = [| 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 = Array.find (fun elem -> isPerfectSquare elem && isPerfectCube elem) arrayA
let index = Array.findIndex (fun elem -> isPerfectSquare elem && isPerfectCube elem) arrayA
printfn "The first element that is both a square and a cube is %d and its index is %d." element index
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
Consulte também
Referência
Módulo de Collections.Array (F#)