此方法用于確定是否將特定鍵定義為映射中的鍵
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)]).
輸出結(jié)果
上面程序的輸出如下。
true