Erlang - from_list


此方法用于从列表生成地图。

句法

from_list(Lst)

参数

  • Lst - 这是需要转换为地图的列表。

返回值

基于所提供列表的地图。

例如

-module(helloworld). 
-export([start/0]). 

start() ->   
   Lst1 = [{"a",1},{"b",2},{"c",3}], 
   io:fwrite("~p~n",[maps:from_list(Lst1)]).

输出

上述程序的输出如下。

#{"a" => 1,"b" => 2,"c" => 3}
erlang_maps.htm