lunar (3) std::ranges::common_range.3cxx.gz

Provided by: libstdc++-13-doc_13-20230320-1ubuntu1_all bug

NAME

       std::ranges::common_range - A range for which ranges::begin and ranges::end return the
       same type.

SYNOPSIS

       #include <ranges>

Concept definition

       template<typename _Tp>
       concept std::ranges::common_range =  range<_Tp> && same_as<iterator_t<_Tp>, sentinel_t<_Tp>>

Detailed Description

       A range for which ranges::begin and ranges::end return the same type.

       Definition at line 690 of file ranges.

Author

       Generated automatically by Doxygen for libstdc++ from the source code.