std::ranges::bidirectional_range
A range for which ranges::begin returns a bidirectional iterator.
- 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 returns a bidirectional iterator.
#include <ranges>
template<typename _Tp> concept std::ranges::bidirectional_range = forward_range<_Tp> && bidirectional_iterator<iterator_t<_Tp>>
A range for which ranges::begin returns a bidirectional iterator.
Generated automatically by Doxygen for libstdc++ from the source code.