static func < (Decimal, Decimal) -> Bool
Returns a Boolean value indicating whether one decimal number is strictly less than another.
ある10進法数が別のものより厳密に小さいかどうかを指し示すブール値を返します。
static func == (Decimal, Decimal) -> Bool
Returns a Boolean value indicating whether two decimal numbers are equal.
2つの10進法数が等しいかどうかを指し示すブール値を返します。
func isEqual (to: Decimal) -> Bool
Indicates whether this decimal is equal to the specified one.
この10進数が指定されたものと等しいかどうかを指し示します。
func isLess (than: Decimal) -> Bool
Indicates whether this decimal is less than the specified one.
この10進数が指定されたものより小さいかどうかを指し示します。
func isTotallyOrdered (belowOrEqualTo : Decimal) -> Bool
Returns a Boolean value indicating whether this instance should precede the given value in an ascending sort.
このインスタンスがある昇順ソートにおいて与えられた値より前にくるかどうかを指し示すブール値を返します。
func distance(to: Decimal) -> Decimal
Returns the distance from this value to the specified value.
この値から指定された値までの隔たりを返します。
func advanced(by: Decimal) -> Decimal
Returns a new value advanced by the given distance.
与えられたインスタンスによって引き上げられる新しい値を返します。
func NSDecimalCompare (UnsafePointer<Decimal>, UnsafePointer<Decimal>) -> ComparisonResult
Compares two decimal values.
2つの10進数値を比較します。