std::ranges::common_range
A range for which ranges::begin and ranges::end return the same type.
- Provided by: libstdc++-13-doc (Version: 13.3.0-6ubuntu2~24.04.1)
- Source: gcc-13
- Report a bug
A range for which ranges::begin and ranges::end return the same type.
#include <ranges>
template<typename _Tp> concept std::ranges::common_range = range<_Tp> && same_as<iterator_t<_Tp>, sentinel_t<_Tp>>
A range for which ranges::begin and ranges::end return the same type.
Generated automatically by Doxygen for libstdc++ from the source code.