-
Notifications
You must be signed in to change notification settings - Fork 0
c8_rational_operator_gteq
Dave Hudson edited this page May 2, 2017
·
2 revisions
auto operator >=(const rational &v) const noexcept -> bool;
Determines if the value of this object (left hand side of the operator) is greater than, or equal to, v
(right hand side of the operator).
-
true
if the value of this object is greater than, or equal to,v
. -
false
if it is not.
None.