How to reshape() using an array instead of a tuple / Alt: How to convert an array into a tuple

Thanks! That’s exactly what I need. I’d swear I tried that. I wonder what I did to get it wrong… Oh. I see what I did:

Tuple(3,4) # wrong
tuple(dims) # wrong
Tuple(dims) # yay!