当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


erlang to_map(List)用法及代码示例


to_map(List) -> Map
OTP 24.0
类型:
List = [Shorthand | {Key, Value} | term()]
Map = #{Shorthand => true, Key => Value}
Shorthand = atom()
Key = Value = term()

将属性列表 List 转换为映射。

List 中的速记原子值将扩展为 Atom => true 形式的关联。 List{Key, Value} 形式的元组将转换为 Key => Value 形式的关联。其他任何事情都会被默默地忽略。

如果同一个键在 List 中多次出现,则结果映射中将出现最接近 List 头部的键,即调用 get_value(Key, List) 返回的值。

例子:

to_map([a, {b, 1}, {c, 2}, {c, 3}])

返回:

#{a => true, b => 1, c => 2}

相关用法


注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 to_map(List) -> Map。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。