다음을 통해 공유


Array.tryPick<'T,'U> 함수(F#)

지정된 함수를 연속 요소에 적용하여 함수가 Some을 반환하는 첫째 결과를 반환합니다. 함수가 어떤 요소에 대해서도 Some을 반환하지 않으면 None이 반환됩니다.

네임스페이스/모듈 경로: Microsoft.FSharp.Collections.Array

어셈블리: FSharp.Core(FSharp.Core.dll)

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

// Usage:
Array.tryPick chooser array

매개 변수

  • chooser
    형식: 'T -> 'U option

    배열 요소를 옵션으로 변환하는 함수입니다.

  • array
    형식: 'T []

    입력 배열입니다.

반환 값

Some의 옵션 값이 있는 첫 번째로 변환되는 요소이며 모든 요소에 대해 함수에서 Some을 반환하지 않는 경우는 None입니다.

설명

컴파일된 어셈블리에서 이 함수의 이름은 TryPick입니다. F# 이외의 언어에서 함수에 액세스하거나 리플렉션을 통해 함수에 액세스하는 경우 이 이름을 사용합니다.

예제

다음 예제에서는 조건을 만족하는 요소를 찾고 요소에 대한 일부 추가 데이터(이 경우, 제곱근과 3제곱근)도 반환하도록 Array.tryPick의 사용을 보여줍니다.

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 |]
            

플랫폼

Windows 7, Windows Vista SP2, Windows XP SP3, Windows XP x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2

버전 정보

F# 런타임

지원되는 버전: 2.0, 4.0

Silverlight

지원되는 버전: 3

참고 항목

참조

Collections.Array 모듈(F#)

Microsoft.FSharp.Collections 네임스페이스(F#)