Here’s a simple example:
julia> struct MyType{T, N}
end
julia> const MyAlias{T} = MyType{T, 2}
MyAlias{T} where T (alias for MyType{T, 2} where T)
Here’s a simple example:
julia> struct MyType{T, N}
end
julia> const MyAlias{T} = MyType{T, 2}
MyAlias{T} where T (alias for MyType{T, 2} where T)