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


Elixir List.keystore用法及代码示例


Elixir语言中 List.keystore 相关用法介绍如下。

用法:

keystore(list, key, position, new_tuple)
@spec keystore([tuple()], any(), non_neg_integer(), tuple()) :: [tuple(), ...]

接收元组的 list 并将 position 中由 key 标识的元素替换为 new_tuple

如果该元素不存在,则将其添加到 list 的末尾。

例子

iex> List.keystore([a: 1, b: 2], :a, 0, {:a, 3})
[a: 3, b: 2]

iex> List.keystore([a: 1, b: 2], :c, 0, {:c, 3})
[a: 1, b: 2, c: 3]

相关用法


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