func adding(NSDecimalNumber) -> NSDecimalNumber
Adds this number to another given number.
この数を別の与えられた数に加えます。
func subtracting(NSDecimalNumber) -> NSDecimalNumber
Subtracts another given number from this one.
別の与えられた数をこのものから減算します。
func multiplying(by: NSDecimalNumber) -> NSDecimalNumber
Multiplies the number by another given number.
この数を別の与えられた数と乗算します。
func dividing(by: NSDecimalNumber) -> NSDecimalNumber
Divides the number by another given number.
この数を別の与えられた数で除算します。
func raising(toPower : Int) -> NSDecimalNumber
Raises the number to a given power.
この数をある与えられた数まで累乗します。
func multiplying(byPowerOf10 : Int16) -> NSDecimalNumber
Multiplies the number by 10 raised to the given power.
この数を別の与えられた冪で累乗された10乗算します。
func adding(NSDecimalNumber, withBehavior : NSDecimalNumberBehaviors?) -> NSDecimalNumber
Adds this number to another given number using the specified behavior.
この数を別の与えられた数に加算します、指定された挙動を使います。
func subtracting(NSDecimalNumber, withBehavior : NSDecimalNumberBehaviors?) -> NSDecimalNumber
Subtracts this a given number from this one using the specified behavior.
この与えられた数をこのものから減算します、この指定された挙動を使います。
func multiplying(by: NSDecimalNumber, withBehavior : NSDecimalNumberBehaviors?) -> NSDecimalNumber
Multiplies this number by another given number using the specified behavior.
この数を別の与えられた数と乗算します、指定された挙動を使います。
func dividing(by: NSDecimalNumber, withBehavior : NSDecimalNumberBehaviors?) -> NSDecimalNumber
Divides this number by another given number using the specified behavior.
この数を別の与えられた数で除算します、指定された挙動を使います。
func multiplying(byPowerOf10 : Int16, withBehavior : NSDecimalNumberBehaviors?) -> NSDecimalNumber
Multiplies the number by 10 raised to the given power using the specified behavior.
この数を、この与えられた冪指数まで累乗された10と乗算します、指定された挙動を使います。