Describes a range of const objects.
More...
Related Functions | |
(Note that these are not member functions.) | |
| template<typename InputIterator > | |
| range_wrapper< InputIterator > | make_range (InputIterator first, InputIterator last) noexcept |
Creates a wrapper over the range [first, last). More... | |
| template<typename InputIterator , typename Size > | |
| range_wrapper< InputIterator > | make_range_n (InputIterator first, const Size count) noexcept |
Creates a wrapper over the range [first, first + n). More... | |
Describes a range of const objects.
| Iterator | Container iterator type. |
This range is used to that only a part of a container needs to be communicated.
1.8.13