VCTR
Loading...
Searching...
No Matches
vctr::has::end Concept Reference

Constrains a type to have a member function end() or end() const. More...

Concept definition

template<class T>
concept vctr::has::end = requires (T& t) { *t.end(); } || requires (const T& t) { *t.begin(); }
Constrains a type to have a member function end() or end() const.
Definition: ContainerAndExpressionConcepts.h:142

Detailed Description

Constrains a type to have a member function end() or end() const.