Skip to content

Commit

Permalink
Update parallel_for_each_func.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
aepanchi authored Sep 5, 2023
1 parent 2d2e15a commit 5ee4d46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Requirements:
* The ``InputIterator`` type must meet the `Input Iterator` requirements from the [input.iterators]section of the ISO C++ Standard.
* The ``Container`` type must meet the :doc:`ContainerBasedSequence requirements <../../named_requirements/algorithms/container_based_sequence>`.
* If ``InputIterator`` type does not meet the `Forward Iterator` requirements from the [forward.iterators] section of the ISO C++ Standard,
the ``std::iterator_traits<InputIterator>::value_type`` type must constructible from ``std::iterator_traits<InputIterator>::reference``.
the ``std::iterator_traits<InputIterator>::value_type`` type must be constructible from ``std::iterator_traits<InputIterator>::reference``.
* ``decltype(std::declval<Container>().begin())`` must meet the `Input Iterator` requirements from the [input.iterators] section of the ISO C++ Standard.

The ``parallel_for_each`` template has two forms.
Expand Down

0 comments on commit 5ee4d46

Please sign in to comment.