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
fun <T> Iterable<T>.associateByInt(block: (index: Int, value: T) -> Int): IntMap<T>
Link copied to clipboard
fun Iterable<MRectangle>.bounds(target: MRectangle = MRectangle()): MRectangle
fun Iterable<MPoint>.bounds(out: MRectangle = MRectangle(), bb: MBoundsBuilder = MBoundsBuilder()): MRectangle
Link copied to clipboard
open operator override fun contains(value: BigInt): Boolean
Link copied to clipboard
operator fun ClosedRange<Angle>.contains(angle: Angle): 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
inline fun <T> Iterable<T>.mapDouble(callback: (T) -> Double): DoubleArrayList
Link copied to clipboard
inline fun <T> Iterable<T>.mapFloat(callback: (T) -> Float): FloatArrayList
Link copied to clipboard
inline fun <T> Iterable<T>.mapInt(callback: (T) -> Int): IntArrayList
Link copied to clipboard
fun <T> Iterable<T>.multisorted(vararg props: KProperty1<T, Comparable<*>>): List<T>
Link copied to clipboard
infix fun step(step: BigInt): BigIntProgression
Link copied to clipboard
@JvmName(name = "sumOfFloat")
inline fun <T> Iterable<T>.sumOfDouble(selector: (T) -> Double): Double
Link copied to clipboard
@JvmName(name = "sumOfFloat")
inline fun <T> Iterable<T>.sumOfFloat(selector: (T) -> Float): Float
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun toString(): String