ContainerRange#
[req.container_range]
ContainerRange is a range that represents a concurrent container
or a part of the container.
The ContainerRange object can be used to traverse the container in parallel algorithms
like parallel_for.
The type CR satisfies the ContainerRange requirements if:
The type
CRmeets the requirements of Range requirements.The type
CRprovides the following member types and functions:-
type CR::value_type#
The type of the item in the range.
-
type CR::reference#
Reference type to the item in the range.
-
type CR::const_reference#
Constant reference type to the item in the range.
-
type CR::iterator#
Iterator type for range traversal.
-
type CR::size_type#
Unsigned integer type for obtaining grain size.
-
type CR::difference_type#
The type of the difference between two iterators.
-
type CR::value_type#