>
> What about the following?
>
myfunc(vec::Vector{Dict{ASCIIString}}) = 1
a = [ Dict("a"=>1), Dict("b"=>1.0) ]
b = [ Dict(1=>:hello), Dict(2=>:world) ]
julia> myfunc(a)
1
julia> myfunc(b)
ERROR: MethodError: `myfunc` has no method matching
myfunc(::Array{Dict{Int64,Symbol},1})
