Array.tryPick < T','U > Função (F#)

Aplica a função de determinado elementos sucessivas, retornando o primeiro resultado onde a função retornará Some. Se a função retornar Some para qualquer elemento, em seguida, None é retornado.

Caminho do namespace/módulo: Microsoft.FSharp.Collections.array

Assembly: FSharp.Core (em FSharp.Core.dll)

// Signature:
Array.tryPick : ('T -> 'U option) -> 'T [] -> 'U option

// Usage:
Array.tryPick chooser array

Parâmetros

  • chooser
    Tipo: 'T -> 'U option

    A função para transformar os elementos da matriz em Opções.

  • array
    Tipo: 'T []

    A matriz de entrada.

Valor de retorno

O primeiro elemento transformado que possui um valor de opção de Some, ou None se a função retornar Some para qualquer elemento.

Comentários

Esta função é chamada de TryPick em módulos (assemblies) compilados. Se você estiver acessando a função de um idioma diferente, por exemplo, F# ou através de reflexão, use esse nome.

Exemplo

O exemplo a seguir demonstra o uso de Array.tryPick para tentar localizar um elemento que satisfaz uma condição e também retornar alguns dados adicionais sobre o elemento, nesse caso, a raiz quadrada e a raiz do cubo.

let findPerfectSquareAndCube array1 =
    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
    // intFunction : (float -> float) -> int -> int
    // Allows the use of a floating point function with integers.
    let intFunction function1 number = int (round (function1 (float number)))
    let cubeRoot x = System.Math.Pow(x, 1.0/3.0)
    // testElement: int -> (int * int * int) option
    // Test an element to see whether it is a perfect square and a perfect
    // cube, and, if so, return the element, square root, and cube root
    // as an option value. Otherwise, return None.
    let testElement elem = 
        if isPerfectSquare elem && isPerfectCube elem then
            Some(elem, intFunction sqrt elem, intFunction cubeRoot elem)
        else None
    match Array.tryPick testElement array1 with
    | Some (n, sqrt, cuberoot) -> printfn "Found an element %d with square root %d and cube root %d." n sqrt cuberoot
    | None -> printfn "Did not find an element that is both a perfect square and a perfect cube."

findPerfectSquareAndCube [| 1 .. 10 |]
findPerfectSquareAndCube [| 2 .. 100 |]
findPerfectSquareAndCube [| 100 .. 1000 |]
findPerfectSquareAndCube [| 1000 .. 10000 |]
findPerfectSquareAndCube [| 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

Consulte também

Referência

Módulo de Collections.Array (F#)

Microsoft.FSharp.Collections Namespace (F#)