dear julia experts. conceptual question. a 2013 stefan k message indicated tuple( [1:5;] ), but this now creates a tuple holding an array, rather than a tuple from the array. so what is the opposite of [i for i in mytuple] ?
I am also wondering about the display of
julia> tuple( [1:5;] )
([1, 2, 3, 4, 5],)
there is no second element in the tuple, so why the trailing comma?