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

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

Concept definition

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

Detailed Description

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