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


Julia mergewith用法及代码示例


用法:

mergewith(combine, d::AbstractDict, others::AbstractDict...)
mergewith(combine)
merge(combine, d::AbstractDict, others::AbstractDict...)

从给定的集合构造一个合并的集合。如有必要,将提升结果集合的类型以适应合并集合的类型。具有相同键的值将使用组合器函数进行组合。柯里化形式 mergewith(combine) 返回函数 (args...) -> mergewith(combine, args...)

方法merge(combine::Union{Function,Type}, args...) 作为mergewith(combine, args...) 的别名仍然可用于向后兼容。

Julia 1.5

mergewith 需要 Julia 1.5 或更高版本。

例子

julia> a = Dict("foo" => 0.0, "bar" => 42.0)
Dict{String, Float64} with 2 entries:
  "bar" => 42.0
  "foo" => 0.0

julia> b = Dict("baz" => 17, "bar" => 4711)
Dict{String, Int64} with 2 entries:
  "bar" => 4711
  "baz" => 17

julia> mergewith(+, a, b)
Dict{String, Float64} with 3 entries:
  "bar" => 4753.0
  "baz" => 17.0
  "foo" => 0.0

julia> ans == mergewith(+)(a, b)
true

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.mergewith — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。