Visual Computing Library
Loading...
Searching...
No Matches
vcl::Range Concept Reference

Utility concept that is evaluated true if T is a range, e.g. if has a begin and an end. More...

#include <vclib/concepts/ranges/range.h>

Concept definition

template<typename T>
concept vcl::Range = std::ranges::range<T>
Utility concept that is evaluated true if T is a range, e.g. if has a begin and an end.
Definition range.h:39

Detailed Description

Utility concept that is evaluated true if T is a range, e.g. if has a begin and an end.

It is equivalent to std::ranges::range.