Seq.findIndex<'T> 関数 (F#)
指定した関数が true を返す最初の要素のインデックスを返します。
名前空間/モジュール パス: Microsoft.FSharp.Collections.Seq
アセンブリ: FSharp.Core (FSharp.Core.dll)
// Signature:
Seq.findIndex : ('T -> bool) -> seq<'T> -> int
// Usage:
Seq.findIndex predicate source
パラメーター
例外
例外 |
状態 |
---|---|
入力シーケンスが null の場合にスローされます。 |
|
述語によって評価されたときに true を返す要素がない場合にスローされます。 |
戻り値
指定した関数が true を返す最初の要素のインデックス。
解説
この関数は、コンパイルされたアセンブリでは FindIndex という名前です。F# 以外の言語から、またはリフレクションを使用してこの関数にアクセスする場合は、この名前を使用します。
使用例
Seq.findIndex を使用する方法を次のコード例に示します。
let seqA = [| 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 = Seq.find (fun elem -> isPerfectSquare elem && isPerfectCube elem) seqA
let index = Seq.findIndex (fun elem -> isPerfectSquare elem && isPerfectCube elem) seqA
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