此方法用于查找映射中是否存在特定键。
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}