Returns the remainder of this value divided by the given value using truncating division.
SDK
- Xcode 9.0+
Framework
- Swift Standard Library
Declaration
Parameters
other
The value to use when dividing this value.
Return Value
The remainder of this value divided by other
using truncating division.
Discussion
Performing truncating division with floating-point values results in a truncated integer quotient and a remainder. For values x
and y
and their truncated integer quotient q
, the remainder r
satisfies x == y * q + r
.
The following example calculates the truncating remainder of dividing 8.625 by 0.75:
If this value and other
are both finite numbers, the truncating remainder has the same sign as this value and is strictly smaller in magnitude than other
. The truncating
method is always exact.