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