Creates a copy of a Tuple with its fields in reverse order.
The Tuple to copy.
A new Tuple.
auto tup = tuple(1, "2"); assert(tup.reverse == tuple("2", 1));
See Implementation
Creates a copy of a Tuple with its fields in reverse order.