Arbitrary precision integer arithmetic. The focus of this
package is the Whole
type which performs calculations
using arbitrary precision integer arithmetic. An instance
of Whole
may be obtained by calling wholeNumber()
or
parseWhole()
.
Values | |
one | Source Codeshared Whole one A |
two | Source Codeshared Whole two A |
zero | Source Codeshared Whole zero A |
Functions | |
formatWhole | Source Codeshared String formatWhole(Whole whole, Integer radix = ...) The string representation of the given For example:
Parameters:
Throws
See also parseInteger() |
fromImplementation | Source Codeshared Whole fromImplementation(Object implementation) Converts a platform-specific implementation object to a
Parameters:
|
parseWhole | Source Codeshared Whole? parseWhole(String string, Integer radix = ...) The Parameters:
Throws
|
wholeNumber | Source Codeshared Whole wholeNumber(Integer number) |
Interfaces | |
Whole | Source Codeshared Whole An arbitrary precision integer. |