Array.find<'T> 函式 (F#)
傳回第一個指定之函式會傳回 true 的項目。如果沒有這類元素,則引發 KeyNotFoundException。
**命名空間/模組路徑:**Microsoft.FSharp.Collections.Array
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
Array.find : ('T -> bool) -> 'T [] -> 'T
// Usage:
Array.find predicate array
參數
例外狀況
例外狀況 |
條件 |
---|---|
如果 predicate 沒有為任何項目傳回 true,則擲回。 |
傳回值
predicate 傳回 true 的第一個項目。
備註
這個函式在已編譯的組件中名為 Find。如果您是透過 F# 以外的語言,或是透過反映來存取函式,請使用這個名稱。
範例
下列範例示範如何使用 Array.find 和 Array.findIndex,識別第一個大於 1 且為平方數又無立方數的整數。
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
平台
Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2
版本資訊
F# 核心程式庫版本
支援版本:2.0, 4.0,可攜式執行檔 (PE)。