std::sort (3) Linux Manual Page
std::sort – std::sort Synopsis Defined in header<algorithm> template <class RandomIt> (until C++ 20) void sort(RandomIt first, RandomIt last); template <class RandomIt> (since C++ 20) constexpr void sort(RandomIt first, RandomIt last); template <class ExecutionPolicy, class RandomIt> (2)(since C++ 17) void sort(ExecutionPolicy &&policy, RandomIt first, RandomIt last); (1) template <class RandomIt, class Compare> (until C++ 20) void…
