![]() | BigProduct Class |
Namespace: NumberStone
public class BigProduct
The BigProduct type exposes the following members.
Name | Description | |
---|---|---|
![]() | BigProduct |
Constructor for BigProduct |
Name | Description | |
---|---|---|
![]() | Divide |
Divides the BigProduct's value by n raised to pow.
|
![]() | DivideFactorial |
Divides the BigProduct's value by n factorial raised to pow.
|
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | isInteger |
Get whether the BigProduct can be expressed as an integer.
|
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Multiply |
Multiplies the BigProduct's value by n raised to pow.
|
![]() | MultiplyFactorial |
Multiplies the BigProduct's value by n factorial raised to pow.
|
![]() | Pow |
Raises the BigProduct's value by p.
|
![]() | toFraction |
Get the value of the BigProduct as a TupleT1, T2 of numerator and denominator.
|
![]() | toNum |
Get the value of the BigProduct as a Int32.
|
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
BigProduct stores numbers by their prime factorization, making it very speedy for multiplying, dividing, and raising to integer powers. But other than this, it cannot be otherwise changed.
The BigProduct is mutable.