建設
我們可以從這樣的元組列表中建立一個 Map:
Map.fromList [("Alex", 31), ("Bob", 22)]
Map 也可以使用單個值構建:
> Map.singleton "Alex" 31
fromList [("Alex",31)]
還有 empty
功能。
empty::Map k a
Data.Map 還支援典型的集合操作,如 union
, difference
和 intersection
。
我們可以從這樣的元組列表中建立一個 Map:
Map.fromList [("Alex", 31), ("Bob", 22)]
Map 也可以使用單個值構建:
> Map.singleton "Alex" 31
fromList [("Alex",31)]
還有 empty
功能。
empty::Map k a
Data.Map 還支援典型的集合操作,如 union
, difference
和 intersection
。