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

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

Concept definition

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

Detailed Description

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