Rounds this value to an integral value using “schoolbook rounding.”
SDK
- Xcode 9.0+
Framework
- Swift Standard Library
Declaration
Discussion
The round()
method uses the .to
rounding rule, where a value halfway between two integral values is rounded to the one with greater magnitude. The following example rounds several values using this default rule:
To specify an alternative rule for rounding, use the round(_:)
method instead.