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)
Output
平台
Windows 8,Windows 7,Windows server 2012中,Windows server 2008 R2
版本信息
F#核心库版本
支持:2.0,4.0,可移植