From 6ad4cc5024236f455e9fa9bc00a7a110b8215694 Mon Sep 17 00:00:00 2001 From: Dmitriy Sobolev Date: Fri, 20 Sep 2024 14:52:39 +0100 Subject: [PATCH] [oneDPL] Fix rendering of list in iterators.rst Fix indentation to show the bullet lists properly. --- .../oneDPL/source/parallel_api/iterators.rst | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/source/elements/oneDPL/source/parallel_api/iterators.rst b/source/elements/oneDPL/source/parallel_api/iterators.rst index b6b65c6e4..fdfc81e9a 100644 --- a/source/elements/oneDPL/source/parallel_api/iterators.rst +++ b/source/elements/oneDPL/source/parallel_api/iterators.rst @@ -13,13 +13,13 @@ Let us define a named requirement, ``AdaptingIteratorSource``, to describe valid types that can be used as source for oneDPL iterators as described below. The type ``Iter`` satisfies the ``AdaptingIteratorSource`` named requirement if it is any of the following: - * A random access iterator - * The unspecified iterator-like type returned by ``oneapi::dpl::begin`` or ``oneapi::dpl::end`` - * A ``permutation_iterator`` - * A ``transform_iterator`` - * A ``counting_iterator`` - * A ``discard_iterator`` - * A ``zip_iterator`` +* A random access iterator +* The unspecified iterator-like type returned by ``oneapi::dpl::begin`` or ``oneapi::dpl::end`` +* A ``permutation_iterator`` +* A ``transform_iterator`` +* A ``counting_iterator`` +* A ``discard_iterator`` +* A ``zip_iterator`` .. code:: cpp @@ -155,13 +155,13 @@ iterator instances to determine their position in the index map. ``SourceIterato The type ``IndexMap`` must be one of the following: - * A random access iterator - * The unspecified iterator-like type returned by ``oneapi::dpl::begin`` or ``oneapi::dpl::end`` - * A ``permutation_iterator`` - * A ``transform_iterator`` - * A ``counting_iterator`` - * A functor with a signature equivalent to ``T operator()(const T&) const`` where ``T`` is a - ``std::iterator_traits::difference_type`` +* A random access iterator +* The unspecified iterator-like type returned by ``oneapi::dpl::begin`` or ``oneapi::dpl::end`` +* A ``permutation_iterator`` +* A ``transform_iterator`` +* A ``counting_iterator`` +* A functor with a signature equivalent to ``T operator()(const T&) const`` where ``T`` is a + ``std::iterator_traits::difference_type`` ``permutation_iterator::operator*`` uses the counter value of the instance on which