andyferris / Dictionaries.jl

An alternative interface for dictionaries in Julia, for improved productivity and performance
Other
278 stars 28 forks source link

No `merge` and friends with more than two `AbstractDictionary`s #129

Closed pablosanjose closed 5 months ago

pablosanjose commented 5 months ago

We don't have support for merging three or more AbstractDictionarys. Specifically we are missing the following methods, which are included and documented for AbstractDicts

merge(d::AbstractDictionary, others::AbstractDictionary...)
merge!(d::AbstractDictionary, others::AbstractDictionary...)
mergewith(combine, d::AbstractDictionary, others::AbstractDictionary...)
mergewith!(combine, d::AbstractDictionary, others::AbstractDictionary...)