Range-v3
Range algorithms, views, and actions for the Standard Library
ranges::_range_ Concept Reference

The _range_ concept. More...

#include <range/v3/range/concepts.hpp>

Concept definition

template<typename T>
concept ranges::_range_ = requires( T & t ) { ranges::begin(t), ranges::end(t) ; }
The _range_ concept.
Definition: concepts.hpp:65
constexpr _begin_::fn begin
Definition: access.hpp:182
constexpr _end_::fn end
Definition: access.hpp:313

Detailed Description

The _range_ concept.