Erlang中文手册(Erldoc.com)  »  proplists  »  lookup/2
Erlang并发编程 Erlang/OTP设计原理 Erlang/OTP[pdf] Mnesia用户手册[pdf] Erlang完整手册[en] 官网手册[en] 模块列表 方法列表 随机 Erlang中文社区(BBS) 美女图库

proplists:lookup/2

返回在列表里第一个跟键相关联的条目

用法:

lookup(Key, List) -> none | tuple()

内部实现:

-spec lookup(Key, List) -> 'none' | tuple() when
      Key :: term(),
      List :: [term()].

lookup(Key, [P | Ps]) ->
    if is_atom(P), P =:= Key ->
	    {Key, true};
       tuple_size(P) >= 1, element(1, P) =:= Key ->
	    %% Note that Key does not have to be an atom in this case.
	    P;
       true ->
	    lookup(Key, Ps)
    end;
lookup(_Key, []) ->
    none.

返回在列表 List 里第一个跟键 Key 相关联的条目,如果有一个存在的话,否则返回 none。例如在列表里有一个原子 A,那么元组 {A, true} 就是跟 A 相关联的条目。

proplists:lookup(k1, [{k1, 1}, {k2, 2}, k1, {k3, 3}, {k4, [[4]]}]).
proplists:lookup(k3, [{k1, 1}, {k2, 2}, k3, {k3, 3}, {k4, [[4]]}]).
阿里云 - 最高1000元通用代金券立即可用
沪ICP备13037221号-9