Is it possible to allocate memory for a Tuple{String,Any} type in Julia like
s = 100
tup_array = Tuple{String,Any}[s]
If so, how?
You can do (on Julia 0.4):
s = 100
tup_array = Array(Tuple{String,Any}, s)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With