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