Is there a "good" way to create tuples from arrays? The best I've come up
with is
function make_tuple(a...)
return a
end
make_tuple({1, 2, 3}...)
I feel that there should be a better way.
Is there a "good" way to create tuples from arrays? The best I've come up
with is
function make_tuple(a...)
return a
end
make_tuple({1, 2, 3}...)
I feel that there should be a better way.