Unfortunately, backporting the new Dict constructor approach to 0.3 would be a fairly large breaking change, so people will have to rely on Compat for now for that functionality.
On Fri, Dec 26, 2014 at 5:07 AM, Ismael VC <[email protected]> wrote: > You'll need to use `@compat` in v0.3.3: > > julia> Dict(zip("abc","123")) > ERROR: `Dict{K,V}` has no method matching Dict{K,V}(::Zip2{ASCIIString, > ASCIIString}) > > julia> using Compat > > julia> @compat Dict(zip("abc","123")) > Dict{Char,Char} with 3 entries: > 'c' => '3' > 'b' => '2' > 'a' => '1' > > > >
