Seq.findIndex<'T> 関数 (F#)
更新 : 2010 年 8 月
指定した関数が 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 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
参照
その他の技術情報
Microsoft.FSharp.Collections 名前空間 (F#)
履歴の変更
日付 |
履歴 |
理由 |
---|---|---|
2010 年 8 月 |
コード例を追加。 |
情報の拡充 |