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

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

Concept definition

template<class T>
concept vctr::has::size = requires (const T& t, size_t i) { i = t.size(); }
Constrains a type to have a member function size() const.
Definition: ContainerAndExpressionConcepts.h:126

Detailed Description

Constrains a type to have a member function size() const.