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