How is Matrix defined

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)
8 Likes