Go to the source code of this file.
|
| 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.
|
| |
◆ 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 41 of file sort.h.