>
>
>
> julia> foo = Foo([1], [2], ["bar"])
> ERROR: no method Foo{T,N}(Array{Int64,1}, Array{Int64,1}, 
> Array{ASCIIString,1})
>
> Without the inner constructor, an object is created no problem. 
>

julia> foo = Foo{Int64, 1}([1],[2], ["bar"])  

Reply via email to