static func * (Decimal, Decimal) -> Decimal
Multiplies two decimal numbers.
2つの10進数を掛け合わせます。
static func *= (inout Decimal, Decimal)
Multiplies two decimal numbers, storing the result in the first number.
2つの10進数を掛け合わせます、結果を最初の数に格納します。
static func + (Decimal, Decimal) -> Decimal
Adds two decimal numbers.
2つの10進数を加算します。
static func += (inout Decimal, Decimal)
Adds two decimal numbers, storing the result in the first number.
2つの10進数を加算します、結果を最初の数に格納します。
static func - (Decimal, Decimal) -> Decimal
Subtracts one decimal number from another.
ある10進数を別のものから引きます。
static func -= (inout Decimal, Decimal)
Subtracts one decimal number from another, storing the result in the first number.
ある10進数を別のものから引きます、結果を最初の数に格納します。
static func / (Decimal, Decimal) -> Decimal
Divides one decimal number by another.
ある10進数を別のもので割ります。
func pow(Decimal, Int) -> Decimal
Returns a decimal number raised to a given power.
指定累乗されたある10進数を返します。
func negate()
Negates this decimal.
この10進数を負にします。