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

Constrains the type to have a member function function getStart() const which returns ValueType. More...

Concept definition

template<class T, class ValueType>
concept vctr::has::getStartWithValueType = requires (const T& t) { { t.getStart() } -> std::same_as<ValueType>; }
Constrains the type to have a member function function getStart() const which returns ValueType.
Definition: GenericConcepts.h:48

Detailed Description

Constrains the type to have a member function function getStart() const which returns ValueType.