| Member | Description |
member ( % ) : BigInt * BigInt -> BigInt |
Return the modulus of big integers
|
member ( * ) : BigInt * BigInt -> BigInt |
Return the product of big integers
|
member ( + ) : BigInt * BigInt -> BigInt |
Return the sum of two big integers
|
member ( - ) : BigInt * BigInt -> BigInt |
Return the difference of big integers
|
member ( .. ) : BigInt * BigInt -> seq<BigInt> |
Generate a range of big integers
|
member ( .. .. ) : BigInt * BigInt * BigInt -> seq<BigInt> |
Generate a range of big integers, with a step
|
new : int64 -> BigInt | |
new : int -> BigInt | |
member ( / ) : BigInt * BigInt -> BigInt |
Return the ratio of big integers
|
member ( < ) : BigInt * BigInt -> bool |
This operator is for use from other .NET languages
|
member ( <= ) : BigInt * BigInt -> bool |
This operator is for use from other .NET languages
|
member ( = ) : BigInt * BigInt -> bool |
This operator is for use from other .NET languages
|
member ( > ) : BigInt * BigInt -> bool |
This operator is for use from other .NET languages
|
member ( >= ) : BigInt * BigInt -> bool |
This operator is for use from other .NET languages
|
member ( ~+ ) : BigInt -> BigInt |
Return the given big integer
|
member ( ~- ) : BigInt -> BigInt |
Return the negation of a big integer
|
member Abs : BigInt -> BigInt |
Compute the absolute value of a big integer
|
member DivMod : BigInt * BigInt -> BigInt * BigInt |
Compute the ratio and remainder of two big integers
|
member Factorial : BigInt -> BigInt |
Compute the factorial function as a big integer
|
member GCD : BigInt * BigInt -> BigInt |
Return the greatest common divisor of two big integers
|
member One : BigInt |
Get the big integer for one
|
member Parse : string -> BigInt |
Parse a big integer from a string format
|
member Pow : BigInt * BigInt -> BigInt |
Return n^m for two big integers
|
member Sign : BigInt -> int |
Return the sign of a big integer: 0, +1 or -1
|
member ToDouble : BigInt -> float |
Convert a big integer to a floating point number
|
member ToInt32 : BigInt -> int32 |
Convert a big integer to a 32-bit signed integer
|
member ToInt64 : BigInt -> int64 |
Convert a big integer to a 64-bit signed integer
|
member Zero : BigInt |
Get the big integer for zero
|