Is there any difference between
Dict{T where T<: Real, Int64}()
and
Dict{Real, Int64}()
?
Is there any difference between
Dict{T where T<: Real, Int64}()
and
Dict{Real, Int64}()
?
No difference, you can verify that the types are equivalent:
julia> (T where T <: Real) === Real
true