Reverse Ranges
There were always roundabout ways of reversing a range. Now we have a predefined function to do just that.
We'll cover the following...
We'll cover the following...
std::reverse and std::reverse_copy invert the order of elements in their ranges. ...