BigIntRange

class BigIntRange(start: BigInt, endInclusive: BigInt) : BigIntProgression, ClosedRange<BigInt>

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

See also

Constructors

Link copied to clipboard
constructor(start: BigInt, endInclusive: BigInt)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open override val endInclusive: BigInt
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val start: BigInt
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun contains(value: BigInt): Boolean
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun isEmpty(): Boolean

Checks whether the range is empty.

Link copied to clipboard
open operator override fun iterator(): Iterator<BigInt>
Link copied to clipboard
infix fun step(step: BigInt): BigIntProgression
Link copied to clipboard
open override fun toString(): String