Instance Method
インスタンスメソッド
negate()
Negates this decimal.
この10進数を負にします。
Availability 有効性
- iOS 7.0+
- iPadOS 7.0+
- macOS 10.9+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 7.1+
Technology
- Foundation ファウンデーション
Declaration 宣言
mutating func negate()
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Performing Arithmetic 算術の実行
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進数を別のもので割ります。
static func /= (inout Decimal, Decimal)
Divides one decimal number by another, storing the result in the first number.
ある10進数を別のもので割ります、結果を最初の数に格納します。
func pow(Decimal, Int) -> Decimal
Returns a decimal number raised to a given power.
指定累乗されたある10進数を返します。