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

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

Concept definition

template<class T>
concept vctr::has::getLength = requires (const T& t) { { t.getLength() } -> is::realNumber; }
Constrains the type to have a member function function getLength() const which returns a real number.
Definition: GenericConcepts.h:40
Constrains a type to represent a real valued number.
Definition: NumericTypeConcepts.h:75

Detailed Description

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