num.div(numeric) â integer
Instance Public methods
Uses /
to perform division, then converts the result to an
integer. numeric
does not define the /
operator;
this is left to subclasses.
Equivalent to num.divmod(aNumeric).
See Numeric#divmod
.
Please login to continue.