Map.map<'Key,'T,'U> 函式 (F#)
更新:2010 年 8 月
建立新的集合,其元素會將提供的函式套用至每個集合的元素的結果。 傳遞給函式的索引鍵表示要進行轉換之項目的索引鍵。
命名空間/模組路徑: Microsoft.FSharp.Collections.Map
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
Map.map : ('Key -> 'T -> 'U) -> Map<'Key,'T> -> Map<'Key,'U> (requires comparison)
// Usage:
Map.map mapping table
參數
mapping
型別:'Key -> 'T -> 'U轉換索引鍵/值組的函式。
table
型別:Map<'Key,'T>輸入對應。
傳回值
產生之索引鍵與已轉換值的對應。
備註
這個函式是名為 Map中 已編譯的組件。 如果從一個語言,F # 以外,或透過反映存取函式使用這個名稱。
範例
下列程式碼會示範如何使用 的 Map.map。
let map1 = Map.ofList [ (1, "One"); (2, "Two"); (3, "Three") ]
let map2 = map1 |> Map.map (fun key value -> value.ToUpper())
let map3 = map1 |> Map.map (fun key value -> value.ToLower())
printfn "%A" map1
printfn "%A" map2
printfn "%A" map3
輸出
平台
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#)
變更記錄
日期 |
History |
原因 |
---|---|---|
2010 年 8 月 |
加入程式碼範例。 |
資訊加強。 |