open class BigDecimalProgression : Iterable<BigDecimal>
val first: BigDecimal |
|
val last: BigDecimal |
|
val step: BigDecimal |
open fun equals(other: Any?): Boolean |
|
open fun hashCode(): Int |
|
open fun isEmpty(): Boolean
Checks if the progression is empty. |
|
open fun iterator(): BigDecimalIterator |
|
open fun toString(): String |
fun fromClosedRange(rangeStart: BigDecimal, rangeEnd: BigDecimal, step: BigDecimal): BigDecimalProgression
Creates BigDecimalProgression within the specified bounds of a closed range. |