此方法用于查找地图中是否存在特定键。
find(key,map)
key - 这是需要转换为地图的列表。
map - 这是需要搜索密钥的映射。
如果在地图中找到键,则返回该值。
-module(helloworld).
-export([start/0]).
start() ->
Lst1 = [{"a",1},{"b",2},{"c",3}],
Map1 = maps:from_list(Lst1),
io:fwrite("~p~n",[maps:find("a",Map1)]).
上述程序的输出如下。
{ok,1}