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

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

Concept definition

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

Detailed Description

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