update_with(Key, Fun, Init, Map1) -> Map2
OTP 19.0
类型:
Map1 = #{Key => Value1, term() => term()}
Map2 = #{Key := Value2 | Init, term() => term()}
Fun = fun((Value1) -> Value2)
通过对旧值调用 Fun
来更新与 Key
关联的 Map1
中的值以获取新值。如果 Key
不存在于 Map1
中,则 Init
将与 Key
关联。
例子:
> Map = #{"counter" => 1},
Fun = fun(V) -> V + 1 end,
maps:update_with("new counter",Fun,42,Map).
#{"counter" => 1,"new counter" => 42}
相关用法
- erlang update_with(Key, Fun, Map1)用法及代码示例
- erlang update_counter(Key, Increment, Orddict1)用法及代码示例
- erlang update_formatter_config(HandlerId, FormatterConfig)用法及代码示例
- erlang update_formatter_config(HandlerId, Key, Value)用法及代码示例
- erlang update_handler_config(HandlerId, Config)用法及代码示例
- erlang update_primary_config(Config)用法及代码示例
- erlang update_process_metadata(Meta)用法及代码示例
- erlang update_proxy_config(Config)用法及代码示例
- erlang update_counter(Key, Increment, Dict1)用法及代码示例
- erlang update(Key, Fun, Orddict1)用法及代码示例
- erlang update(Key, Fun, Initial, Orddict1)用法及代码示例
- erlang update(Key, Value, Map1)用法及代码示例
- erlang update(Key, Fun, Initial, Dict1)用法及代码示例
- erlang uppercase(String :: unicode:chardata())用法及代码示例
- erlang universaltime用法及代码示例
- erlang unregister用法及代码示例
- erlang universaltime()用法及代码示例
- erlang universaltime_to_localtime(Universaltime)用法及代码示例
- erlang unlink(Id)用法及代码示例
- erlang unregister(RegName)用法及代码示例
- erlang uniform()用法及代码示例
- erlang uniform_s(State :: state())用法及代码示例
- erlang utilization(Sample)用法及代码示例
- erlang uniq(List1)用法及代码示例
- erlang uniq(Fun, List1)用法及代码示例
注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 update_with(Key, Fun, Init, Map1) -> Map2。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。