List.findIndex<'T> 函式 (F#)
傳回清單中滿足所指定述詞之第一個項目的索引。如果沒有這類項目,則引發 KeyNotFoundException。
命名空間/模組路徑:Microsoft.FSharp.Collections.List
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
List.findIndex : ('T -> bool) -> 'T list -> int
// Usage:
List.findIndex predicate list
參數
例外狀況
例外狀況 |
條件 |
---|---|
當述詞針對清單的所有項目都評估為 false 時擲回。 |
傳回值
第一個滿足述詞之項目的索引。
備註
這個函式在已編譯的組件中名為 FindIndex。如果您是透過 F# 以外的 .NET 語言,或是透過反映來存取函式,請使用這個名稱。
範例
下列程式碼示範如何使用 List.findIndex,並將其行為與 List.find 的行為進行比較。
let list1 = [ 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 = List.find (fun elem -> isPerfectSquare elem && isPerfectCube elem) list1
let index = List.findIndex (fun elem -> isPerfectSquare elem && isPerfectCube elem) list1
printfn "The first element that is both a square and a cube is %d and its index is %d." element index
Output
平台
Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2
版本資訊
F# 核心程式庫版本
支援版本:2.0, 4.0,可攜式執行檔 (PE)。