Package-level declarations

Types

Link copied to clipboard

Represents an inclusive progression between two BigInt in the range start..endInclusive with a specific step

Link copied to clipboard
class BigIntProgressionIterator(first: BigInt, last: BigInt, val step: BigInt) : Iterator<BigInt>
Link copied to clipboard
class BigIntRange(start: BigInt, endInclusive: BigInt) : BigIntProgression, ClosedRange<BigInt>

Represents an inclusive range between two BigInt between start..endInclusive.

Link copied to clipboard
class ClosedBigNumRange(val start: BigNum, val endInclusive: BigNum) : ClosedRange<BigNum>

Represents an inclusive range between two BigNum between start..endInclusive.