reverse -containers -bytestring
reverse xs returns the elements of xs in reverse order. xs must be finite.
Making functors whose elements are notionally in the reverse order from the original functor.
The same functor, but with Foldable and Traversable instances that process the elements in the reverse order.
O(n) reverse t returns the elements of t in reverse order.
O(n) Reverse the characters of a string. Subject to fusion.