JuliaCollections / OrderedCollections.jl

Julia implementation of associative containers that preserve insertion order
MIT License
92 stars 37 forks source link

Calling `merge` with more than two `LittleDict` collections returns `Dict` #78

Closed rofinn closed 3 years ago

rofinn commented 3 years ago
julia> merge(LittleDict(:a => 1, :b => 2), LittleDict(:c => 3, :d => 4), LittleDict(:c => 5))
Dict{Symbol, Int64} with 4 entries:
  :a => 1
  :b => 2
  :d => 4
  :c => 5

I'd expect this to return another LittleDict.