internal Tree Reverse
Reverse each child of this tree, then assemble them in reverse order into a new tree. Not that reversing each child may also have to recursively navigate more levels of tree.
Return
A tree tuple that is the reverse of the given tree tuple.
Parameters
self
The tree tuple to reverse.