@@ -362,17 +362,13 @@ merge(d::AbstractDict, others::AbstractDict...) =
362362"""
363363 mergewith(combine, d::AbstractDict, others::AbstractDict...)
364364 mergewith(combine)
365- merge(combine, d::AbstractDict, others::AbstractDict...)
366365
367366Construct a merged collection from the given collections. If necessary, the
368367types of the resulting collection will be promoted to accommodate the types of
369368the merged collections. Values with the same key will be combined using the
370369combiner function. The curried form `mergewith(combine)` returns the function
371370`(args...) -> mergewith(combine, args...)`.
372371
373- Method `merge(combine::Union{Function,Type}, args...)` as an alias of
374- `mergewith(combine, args...)` is still available for backward compatibility.
375-
376372!!! compat "Julia 1.5"
377373 `mergewith` requires Julia 1.5 or later.
378374
@@ -405,8 +401,6 @@ Dict{Any, Any} with 1 entry:
405401mergewith (combine, d:: AbstractDict , others:: AbstractDict... ) =
406402 mergewith! (combine, _typeddict (d, others... ), others... )
407403mergewith (combine) = (args... ) -> mergewith (combine, args... )
408- merge (combine:: Callable , d:: AbstractDict , others:: AbstractDict... ) =
409- merge! (combine, _typeddict (d, others... ), others... )
410404
411405promoteK (K) = K
412406promoteV (V) = V
0 commit comments