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


Elixir Map.get_and_update!用法及代码示例


Elixir语言中 Map.get_and_update! 相关用法介绍如下。

用法:

get_and_update!(map, key, fun)
@spec get_and_update!(
  map(),
  key(),
  (value() | nil -> {current_value, new_value :: value()} | :pop)
) ::
  {current_value, map()}
when current_value: value()

key 获取值并更新它,一次完成。如果没有 key 则引发。

行为与 get_and_update/3 完全相同,但如果 keymap 中不存在,则会引发 KeyError 异常。

例子

iex> Map.get_and_update!(%{a: 1}, :a, fn current_value ->
...>   {current_value, "new value!"}
...> end)
{1, %{a: "new value!"}}

iex> Map.get_and_update!(%{a: 1}, :b, fn current_value ->
...>   {current_value, "new value!"}
...> end)
** (KeyError) key :b not found in: %{a: 1}

iex> Map.get_and_update!(%{a: 1}, :a, fn _ ->
...>   :pop
...> end)
{1, %{}}

相关用法


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