RichUtils / pyxis.uzuki.live.richutilskt.utils.progression / BigDecimalProgression

BigDecimalProgression

open class BigDecimalProgression : Iterable<BigDecimal>

Properties

first

val first: BigDecimal

last

val last: BigDecimal

step

val step: BigDecimal

Functions

equals

open fun equals(other: Any?): Boolean

hashCode

open fun hashCode(): Int

isEmpty

open fun isEmpty(): Boolean

Checks if the progression is empty.

iterator

open fun iterator(): BigDecimalIterator

toString

open fun toString(): String

Companion Object Functions

fromClosedRange

fun fromClosedRange(rangeStart: BigDecimal, rangeEnd: BigDecimal, step: BigDecimal): BigDecimalProgression

Creates BigDecimalProgression within the specified bounds of a closed range.