All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
sort.h File Reference
+ Include dependency graph for sort.h:

Go to the source code of this file.

Functions

template<typename C >
void WorkParallelSort (C *container)
 Sorts in-place a container that provides begin() and end() methods.
 
template<typename C , typename Compare >
void WorkParallelSort (C *container, const Compare &comp)
 Sorts in-place a container that provides begin() and end() methods, using a custom comparison functor.
 

Function Documentation

◆ WorkParallelSort() [1/2]

void WorkParallelSort ( C *  container)

Sorts in-place a container that provides begin() and end() methods.

Definition at line 24 of file sort.h.

◆ WorkParallelSort() [2/2]

void WorkParallelSort ( C *  container,
const Compare &  comp 
)

Sorts in-place a container that provides begin() and end() methods, using a custom comparison functor.

Definition at line 40 of file sort.h.