Hello, this looks like a naive question, but I cannot get my way through
I defined a typealias, like
typealias IdxListType Array{Int64,1}
which I want to initialize empty, and then add elements with push!().
My question is: how do I create an empty array of type IdxListType ?
I know I can do Array( Int64, 0 ), but that doesn't use the typealias I
defined,
and IdxListType() is not defined either.
Thanks in advance,
Carlos
