> Erlang中文手册 > from_list/1 把一个 Key-Value 形式的列表转换为一个字典

dict:from_list/1

把一个 Key-Value 形式的列表转换为一个字典

用法:

from_list(List) -> Dict

内部实现:

 -spec from_list(List) -> Dict when
      List :: [{Key :: term(), Value :: term()}],
      Dict :: dict().

from_list(L) ->
    lists:foldl(fun ({K,V}, D) -> store(K, V, D) end, new(), L).

把一个 Key-Value 形式的列表转换为一个字典

dict:from_list([{k1, v1}, {k2, v2}, {k3, v3}]).