File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
source/elements/oneDPL/source/parallel_api Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,12 @@ of parallel range algorithms.
59
59
std::same_as<std::remove_cvref_t<std::iter_reference_t<std::ranges::iterator_t<R>>>,
60
60
std::iter_value_t<std::ranges::iterator_t<R>>>;
61
61
62
- A type ``R `` models ``nothrow-random-access-range `` if no exceptions are thrown from
63
- any operation on an object of type ``std::ranges::iterator_t<R> ``
64
- required by the ``std::random_access_iterator `` concept.
62
+ A type ``R `` models ``nothrow-random-access-range `` if no exceptions are thrown from:
63
+
64
+ - any operation on an object of type ``std::ranges::iterator_t<R> ``
65
+ required by the ``std::random_access_iterator `` concept;
66
+ - calls to ``std::ranges::begin() ``, ``std::ranges::end() `` and ``std::ranges::size() ``
67
+ on an object of type ``R ``.
65
68
66
69
Whole Sequence Operations
67
70
+++++++++++++++++++++++++
You can’t perform that action at this time.
0 commit comments