Discussion
議論
Rounds number
off according to the parameters scale
and roundingMode
and stores the result in result
.
number
をパラメータscale
とroundingMode
に従って丸めて、結果をresult
に格納します。
The scale
value specifies the number of digits result
can have after its decimal point. roundingMode
specifies the way that number is rounded off. There are four possible values for roundingMode
: NSDecimalNumber.RoundingMode.down
, NSDecimalNumber.RoundingMode.up
, NSDecimalNumber.RoundingMode.plain
, and NSDecimalNumber.RoundingMode.bankers
. For thorough discussions of scale
and roundingMode
, see NSDecimalNumberBehaviors
.
scale
値は、result
がそれの小数点の後に持つことができる桁数を指定します。roundingMode
は、数が丸められる方法を指定します。4つの可能な値がroundingMode
に対してあります:NSDecimalNumber.RoundingMode.down
、NSDecimalNumber.RoundingMode.up
、NSDecimalNumber.RoundingMode.plain
、そしてNSDecimalNumber.RoundingMode.bankers
。scale
とroundingMode
の通した解説として、NSDecimalNumberBehaviors
を見てください。
For more information, see Number and Value Programming Topics.
詳細は、Number and Value Programming Topicsを見てください。