次の方法で共有


Map.TryFind<'Key,'Value> メソッド (F#)

マップ内の要素を検索し、要素がマップのドメイン内にある場合は Some 値を返し、そうでない場合は None を返します。

名前空間/モジュール パス: Microsoft.FSharp.Collections

アセンブリ: FSharp.Core (FSharp.Core.dll 内)

// Signature:
member this.TryFind : 'Key -> 'Value option (requires comparison)

// Usage:
map.TryFind (key)

パラメーター

  • key
    型: 'Key

    入力キー。

戻り値

マップされた値。または、キーがマップにない場合は None。

使用例

TryFind メソッドの使用例を次のコードに示します。

let map1 = [ for i in 1 .. 100 -> (i, i*i) ] |> Map.ofList
let result = map1.TryFind 50
match result with
| Some x -> printfn "Found %d." x
| None -> printfn "Did not find the specified value."

出力

  

プラットフォーム

Windows 8、Windows 7、Windows Server 2012 で Windows Server 2008 R2

バージョン情報

F# コア ライブラリのバージョン

サポート: ポータブル 2.0、4.0

参照

関連項目

Collections.Map<'Key,'Value> クラス (F#)

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