mitteLib
Loading...
Searching...
No Matches
mlab::is_range_enumerable Concept Reference

#include <bin_data.hpp>

Concept definition

template<class T>
concept mlab::is_range_enumerable = requires(T t) {
std::begin(t) != std::end(t);
*std::begin(t);
std::next(std::begin(t));
}
Definition bin_data.hpp:88