| Member | Description |
member ( * ) : BigNum * BigNum -> BigNum |
Return the product of two rational numbers
|
member ( + ) : BigNum * BigNum -> BigNum |
Return the sum of two rational numbers
|
member ( - ) : BigNum * BigNum -> BigNum |
Return the difference of two rational numbers
|
member ( / ) : BigNum * BigNum -> BigNum |
Return the ratio of two rational numbers
|
member ( < ) : BigNum * BigNum -> bool |
This operator is for use from other .NET languages
|
member ( <= ) : BigNum * BigNum -> bool |
This operator is for use from other .NET languages
|
member ( = ) : BigNum * BigNum -> bool |
This operator is for use from other .NET languages
|
member ( > ) : BigNum * BigNum -> bool |
This operator is for use from other .NET languages
|
member ( >= ) : BigNum * BigNum -> bool |
This operator is for use from other .NET languages
|
member ( ~+ ) : BigNum -> BigNum |
Return the given rational number
|
member ( ~- ) : BigNum -> BigNum |
Return the negation of a rational number
|
member Abs : BigNum -> BigNum |
Return the absolute value of a rational number
|
member FromBigInt : bigint -> BigNum |
Return the result of converting the given big integer to a rational number
|
member FromInt : int -> BigNum |
Return the result of converting the given integer to a rational number
|
member One : BigNum |
Get one as a rational number
|
member op_Inequality : BigNum * BigNum -> bool |
This operator is for use from other .NET languages
|
member Parse : string -> BigNum |
Return the result of converting the string to a rational number
|
member PowN : BigNum * int -> BigNum |
Return the result of raising the given rational number to the given power
|
member ToBigInt : BigNum -> bigint |
Return the result of converting the given rational number to a big integer
|
member ToDouble : BigNum -> float |
Return the result of converting the given rational number to a floating point number
|
member ToInt32 : BigNum -> int |
Return the result of converting the given rational number to an integer
|
member Zero : BigNum |
Get zero as a rational number
|