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

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

Concept definition

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

Detailed Description

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