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