Other Functions
The following functions are available globally.
-
-
-
Declaration
Swift
public func + (lhs: BigDecimal, rhs: BigDecimal) -> BigDecimalParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs + rhs. -
Declaration
Swift
public func - (lhs: BigDecimal, rhs: BigDecimal) -> BigDecimalParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs - rhs. -
Declaration
Swift
public func * (lhs: BigDecimal, rhs: BigDecimal) -> BigDecimalParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs * rhs. -
Declaration
Swift
public func / (lhs: BigDecimal, rhs: BigDecimal) -> BigDecimalParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs / rhs. -
Declaration
Swift
public func % (lhs: BigDecimal, rhs: BigDecimal) -> BigDecimalParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs % rhs. -
Assigns
lhs + rhstolhs.Declaration
Swift
public func += (lhs: inout BigDecimal, rhs: BigDecimal)Parameters
lhslhs operand.
rhsrhs operand.
-
Assigns
lhs - rhstolhs.Declaration
Swift
public func -= (lhs: inout BigDecimal, rhs: BigDecimal)Parameters
lhslhs operand.
rhsrhs operand.
-
Assigns
lhs * rhstolhs.Declaration
Swift
public func *= (lhs: inout BigDecimal, rhs: BigDecimal)Parameters
lhslhs operand.
rhsrhs operand.
-
Assigns
lhs / rhstolhs.Declaration
Swift
public func /= (lhs: inout BigDecimal, rhs: BigDecimal)Parameters
lhslhs operand.
rhsrhs operand.
-
Assigns
lhs % rhstolhs.Declaration
Swift
public func %= (lhs: inout BigDecimal, rhs: BigDecimal)Parameters
lhslhs operand.
rhsrhs operand.
-
Declaration
Swift
public func > (lhs: BigDecimal, rhs: BigDecimal) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs > rhs. -
Declaration
Swift
public func >= (lhs: BigDecimal, rhs: BigDecimal) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs >= rhs. -
Declaration
Swift
public func < (lhs: BigDecimal, rhs: BigDecimal) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs < rhs. -
Declaration
Swift
public func <= (lhs: BigDecimal, rhs: BigDecimal) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs <= rhs. -
Declaration
Swift
public func != (lhs: BigDecimal, rhs: BigDecimal) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs != rhs. -
Declaration
Swift
public func == (lhs: BigDecimal, rhs: BigDecimal) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs == rhs. -
Declaration
Swift
public func + (lhs: BigInteger, rhs: BigInteger) -> BigIntegerParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs + rhs. -
Declaration
Swift
public func - (lhs: BigInteger, rhs: BigInteger) -> BigIntegerParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs - rhs. -
Declaration
Swift
public func * (lhs: BigInteger, rhs: BigInteger) -> BigIntegerParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs * rhs. -
Declaration
Swift
public func / (lhs: BigInteger, rhs: BigInteger) -> BigIntegerParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs / rhs. -
Declaration
Swift
public func % (lhs: BigInteger, rhs: BigInteger) -> BigIntegerParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs % rhs. -
Assigns
lhs + rhstolhs.Declaration
Swift
public func += (lhs: inout BigInteger, rhs: BigInteger)Parameters
lhslhs operand.
rhsrhs operand.
-
Assigns
lhs - rhstolhs.Declaration
Swift
public func -= (lhs: inout BigInteger, rhs: BigInteger)Parameters
lhslhs operand.
rhsrhs operand.
-
Assigns
lhs * rhstolhs.Declaration
Swift
public func *= (lhs: inout BigInteger, rhs: BigInteger)Parameters
lhslhs operand.
rhsrhs operand.
-
Assigns
lhs / rhstolhs.Declaration
Swift
public func /= (lhs: inout BigInteger, rhs: BigInteger)Parameters
lhslhs operand.
rhsrhs operand.
-
Assigns
lhs % rhstolhs.Declaration
Swift
public func %= (lhs: inout BigInteger, rhs: BigInteger)Parameters
lhslhs operand.
rhsrhs operand.
-
Declaration
Swift
public func > (lhs: BigInteger, rhs: BigInteger) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs > rhs. -
Declaration
Swift
public func >= (lhs: BigInteger, rhs: BigInteger) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs >= rhs. -
Declaration
Swift
public func < (lhs: BigInteger, rhs: BigInteger) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs < rhs. -
Declaration
Swift
public func <= (lhs: BigInteger, rhs: BigInteger) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs <= rhs. -
Declaration
Swift
public func != (lhs: BigInteger, rhs: BigInteger) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs != rhs. -
Declaration
Swift
public func == (lhs: BigInteger, rhs: BigInteger) -> BoolParameters
lhslhs operand.
rhsrhs operand.
Return Value
lhs == rhs. -
Undocumented
Declaration
Swift
public func xs_immortalize<T>(_ o: T) -> T where T : AnyObject