次の方法で共有


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

要素がマップのドメイン内に存在するかどうかをテストします。

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

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

// Signature:
member this.ContainsKey : 'Key -> bool (requires comparison)

// Usage:
map.ContainsKey (key)

パラメーター

  • key
    型: 'Key

    入力キー。

戻り値

指定されたキーがマップに含まれている場合は true。

使用例

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

let map1 = Map.ofList [ (1, "one"); (2, "two"); (3, "three") ]
let findKeyAndPrint key (map : Map<int,string>) =
    if (map.ContainsKey key) then
        printfn "The specified map contains the key %d." key
    else
        printfn "The specified map does not contain the key %d." key
findKeyAndPrint 1 map1
findKeyAndPrint 0 map1

出力

  
  

プラットフォーム

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