Utilities
To use C++ to its full potential, we must use the multitude of utilities it provides.
As C++11 has a lot of libraries, it is often not so easy to find the convenient one for each use case.
Utilities are libraries which have a general focus and therefore can be applied in many contexts.
Calculating the Minimum and Maximum
Examples of utilities are functions to calculate the minimum or maximum of values or functions to swap or ...