Erlang映射
此方法用于从映射返回所有键。
keys(map)
map −这是需要返回所有键的映射。
返回映射中的键列表。
-module(helloworld). -export([start/0]). start() -> Lst1 = [{"a",1},{"b",2},{"c",3}], Map1 = maps:from_list(Lst1), io:fwrite("~p~n",[maps:keys(Map1)]).
输出结果
上面程序的输出如下。
["a","b","c"]