You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SortedDict currently does not implement the Base functions mergewith and mergewith!. So mergewith of two SortedDicts treats them both as AbstractDict and returns a Dict instead of a SortedDict.
Additional missing methods from Base.
map!(f, values(s::SortedDict))
first(a,n) and last(a,n) where a is a sorted container and n is an integer.
filter for SortedDict and SortedMultiDict
'pairs' for SortedDict and SortedMultiDict
The text was updated successfully, but these errors were encountered:
SortedDict currently does not implement the Base functions
mergewith
andmergewith!
. Somergewith
of two SortedDicts treats them both as AbstractDict and returns a Dict instead of a SortedDict.Additional missing methods from
Base
.map!(f, values(s::SortedDict))
first(a,n)
andlast(a,n)
where a is a sorted container and n is an integer.filter
for SortedDict and SortedMultiDictThe text was updated successfully, but these errors were encountered: