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 @@ -64,9 +64,12 @@ of parallel range algorithms.
64
64
std::same_as<std::remove_cvref_t<std::iter_reference_t<std::ranges::iterator_t<R>>>,
65
65
std::iter_value_t<std::ranges::iterator_t<R>>>;
66
66
67
- A type ``R `` models ``nothrow-random-access-range `` if no exceptions are thrown from
68
- any operation on an object of type ``std::ranges::iterator_t<R> ``
69
- required by the ``std::random_access_iterator `` concept.
67
+ A type ``R `` models ``nothrow-random-access-range `` if no exceptions are thrown from:
68
+
69
+ - any operation on an object of type ``std::ranges::iterator_t<R> ``
70
+ required by the ``std::random_access_iterator `` concept;
71
+ - calls to ``std::ranges::begin() ``, ``std::ranges::end() `` and ``std::ranges::size() ``
72
+ on an object of type ``R ``.
70
73
71
74
Whole Sequence Operations
72
75
+++++++++++++++++++++++++
You can’t perform that action at this time.
0 commit comments