You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/elements/oneTBB/source/algorithms/functions/parallel_sort_func.rst
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,11 +32,12 @@ Function template that sorts a sequence.
32
32
Requirements:
33
33
34
34
* The ``RandomAccessIterator`` type must meet the `Random Access Iterators` requirements from
35
-
[random.access.iterators] and `ValueSwappable` requirements from the [swappable.requirements] ISO C++ Standard section.
35
+
[random.access.iterators] and `ValueSwappable` requirements from the [swappable.requirements] ISO C++ Standard section.
36
36
* The ``Compare`` type must meet the `Compare` type requirements from the [alg.sorting] ISO C++ Standard section.
37
37
* The ``Container`` type must meet the :doc:`ContainerBasedSequence requirements <../../named_requirements/algorithms/container_based_sequence>`
38
38
which iterators must meet the `Random Access Iterators` requirements from [random.access.iterators]
39
39
and `Swappable` requirements from the [swappable.requirements] ISO C++ Standard section.
40
+
* The type of dereferenced ``RandomAccessIterator`` or dereferenced ``Container`` iterator must meet the MoveAssignable requirements from [moveassignable] section of ISO C++ Standard and the MoveConstructible requirements from [moveconstructible] section of ISO C++ Standard.
40
41
41
42
Sorts a sequence or a container. The sort is neither stable nor deterministic: relative
42
43
ordering of elements with equal keys is not preserved and not guaranteed to repeat if the same
0 commit comments