Map.Add<'Key,'Value> メソッド (F#)
指定されたマップに束縛を追加した新しいマップを返します。
名前空間/モジュール パス: Microsoft.FSharp.Collections
アセンブリ: FSharp.Core (FSharp.Core.dll 内)
// Signature:
member this.Add : 'Key * 'Value -> Map<'Key, 'Value> (requires comparison)
// Usage:
map.Add (key, value)
パラメーター
key
型: 'Key入力キー。
value
型: 'Value入力値。
戻り値
結果のマップ。
使用例
Add メソッドを使用するコード例を次に示します。
let map1 = Map.ofList [ (1, "one"); (2, "two"); (3, "three") ]
let map2 = map1.Add(0, "zero")
map2 |> Map.iter (fun key value -> printfn "key: %d value: %s" key value)
出力
プラットフォーム
Windows 8、Windows 7、Windows Server 2012 で Windows Server 2008 R2
バージョン情報
F# コア ライブラリのバージョン
サポート: ポータブル 2.0、4.0