當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


erlang update_with(Key, Fun, Map1)用法及代碼示例


update_with(Key, Fun, Map1) -> Map2
OTP 19.0
類型:
Map1 = #{Key := Value1, term() => term()}
Map2 = #{Key := Value2, term() => term()}
Fun = fun((Value1) -> Value2)

通過對舊值調用 Fun 來更新與 Key 關聯的 Map1 中的值以獲取新值。如果映射中不存在Key,則會生成異常{badkey,Key}

例子:

> Map = #{"counter" => 1},
  Fun = fun(V) -> V + 1 end,
  maps:update_with("counter",Fun,Map).
#{"counter" => 2}

相關用法


注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 update_with(Key, Fun, Map1) -> Map2。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。