It is very likely that you are looking for
julia> isa(Tuple{Int}, Type{Tuple{Int}})
true
I would recommend thinking of Type{T} as sugar for dispatching on a type value T, not as part of the type hierarchy. See
It is very likely that you are looking for
julia> isa(Tuple{Int}, Type{Tuple{Int}})
true
I would recommend thinking of Type{T} as sugar for dispatching on a type value T, not as part of the type hierarchy. See