IEEErem
Computes the remainder of division of this value by the divisor value according to the IEEE 754 standard.
The result is computed as
r = this - (q * divisor)
where
q
is the quotient of division rounded to the nearest integer,
q = round(this / other)
.
Special cases:
-
x.IEEErem(y)
isNaN
, whenx
isNaN
ory
isNaN
orx
is+Inf|-Inf
ory
is zero. -
x.IEEErem(y) == x
whenx
is finite andy
is infinite.
See Also