update(Key, Value, Map1) -> Map2
OTP 17.0
類型:
Map1 = #{Key := term(), term() => term()}
Map2 = #{Key := Value, term() => term()}
如果 Key
存在於 Map1
中,則舊的關聯值將替換為值 Value
。該函數返回一個新映射Map2
,其中包含新的關聯值。
如果 Map1
不是映射,則調用失敗,並出現 {badmap,Map}
異常;如果沒有值與 Key
關聯,則調用會失敗,並出現 {badkey,Key}
異常。
例子:
> Map = #{"a" => 1}.
#{"a" => 1}
> maps:update("a", 42, Map).
#{"a" => 42}
相關用法
- erlang update(Key, Fun, Orddict1)用法及代碼示例
- erlang update(Key, Fun, Initial, Orddict1)用法及代碼示例
- erlang update(Key, Fun, Initial, Dict1)用法及代碼示例
- 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_with(Key, Fun, Map1)用法及代碼示例
- erlang update_with(Key, Fun, Init, Map1)用法及代碼示例
- erlang update_counter(Key, Increment, 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(Key, Value, Map1) -> Map2。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。