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


Elixir Keyword.replace!用法及代码示例


Elixir语言中 Keyword.replace! 相关用法介绍如下。

用法:

replace!(keywords, key, value)
(从 1.5.0 开始)
@spec replace!(t(), key(), value()) :: t()

仅当 key 已存在于 keywords 时,才在 key 下放置一个值。

如果 key 中不存在 keywords ,则会引发 KeyError

例子

iex> Keyword.replace!([a: 1, b: 2, a: 3], :a, :new)
[a: :new, b: 2]
iex> Keyword.replace!([a: 1, b: 2, c: 3, b: 4], :b, :new)
[a: 1, b: :new, c: 3]

iex> Keyword.replace!([a: 1], :b, 2)
** (KeyError) key :b not found in: [a: 1]

相关用法


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