-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Heterogeneous multi dict #222
Comments
Certainly not desired. https://github.com/JuliaLang/DataStructures.jl/blob/52615e84024f2ac666469fb8f2af95a6194ad84c/src/multi_dict.jl is almost certainly missing a relevant constructor. Pull requests welcome! |
Yeah I tried to fix it, but so far I keep hitting JuliaLang/julia#19159. |
@wildart I originally thought this issue was related to |
same problem for
|
Yes, it does appear that there is a constructor missing for SortedDict (and also SortedMultiDict). As a temporary workaround, you can try SortedDict(Dict(1 => 1, 2 => "two")) |
I can do
but
throws an error:
is this expected?
The text was updated successfully, but these errors were encountered: