共用方式為


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
    型別:'T -> bool

    用來測試輸入項目的函式。

  • array
    型別:'T []

    輸入陣列。

例外狀況

例外狀況

條件

KeyNotFoundException

如果 predicate 沒有為任何項目傳回 true,則擲回。

傳回值

陣列中滿足所指定述詞之第一個項目的索引。

備註

這個函式在已編譯的組件中名為 FindIndex。 如果您是透過 F# 以外的語言,或是透過反映來存取函式,請使用這個名稱。

範例

下列範例示範如何使用 Array.findArray.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)。

請參閱

參考

Collections.Array 模組 (F#)

Microsoft.FSharp.Collections 命名空間 (F#)

Array.find<'T> 函式 (F#)