Array.findIndex<'T> 函式 (F#)
傳回陣列中滿足所指定述詞之第一個元素的索引。 如果沒有任何元素滿足述詞,則引發 KeyNotFoundException。
命名空間/模組路徑:Microsoft.FSharp.Collections.Array
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
Array.findIndex : ('T -> bool) -> 'T [] -> int
// Usage:
Array.findIndex predicate array
參數
例外狀況
例外狀況 |
條件 |
---|---|
如果 predicate 沒有為任何項目傳回 true,則擲回。 |
傳回值
陣列中滿足所指定述詞之第一個項目的索引。
備註
這個函式在已編譯的組件中名為 FindIndex。 如果您是透過 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)。