class LongRangeSet : RangeSet<Long>
(source)<init> |
LongRangeSet() LongRangeSet(ranges: List<LongRange>) LongRangeSet(vararg ranges: LongRange) |
size |
open val size: Int |
clone |
fun clone(): RangeSet<Long> |
createRange |
fun createRange(start: Long, endInclusive: Long): LongRange |
decrementValue |
fun decrementValue(value: Long): Long |
incrementValue |
fun incrementValue(value: Long): Long |
clear |
open fun clear(): Unit Removes all values from the set. |
equals |
open fun equals(other: Any?): Boolean |
gaps |
fun gaps(): RangeSet<T> Creates a new RangeSet containing missing values between the ranges of this set. |
hashCode |
open fun hashCode(): Int |
isEmpty |
open fun isEmpty(): Boolean |
iterator |
open fun iterator(): MutableIterator<ClosedRange<T>> |