Skip to content

Commit 222f61a

Browse files
committed
deprecate merge(::Callable ..) in favor of mergewith
1 parent 95c1718 commit 222f61a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

base/deprecated.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -565,3 +565,9 @@ end
565565
to_power_type(x) = oftype(x*x, x)
566566

567567
# END 1.12 deprecations
568+
569+
# BEGIN 1.13 deprecations
570+
571+
@deprecate merge(combine::Callable, d::AbstractDict, others::AbstractDict...) mergewith(combine, d, others...)
572+
573+
# end 1.13 deprecations

0 commit comments

Comments
 (0)