Uses of Class
org.eclipse.collections.impl.list.primitive.LongInterval

Packages that use LongInterval
Package
Description
This package contains implementations of the primitive list interfaces.
  • Uses of LongInterval in org.eclipse.collections.impl.list.primitive

    Modifier and Type
    Method
    Description
    LongInterval.by(long newStep)
    This instance by method allows LongInterval to act as a fluent builder for itself.
    LongInterval.evensFromTo(long from, long to)
    Returns an LongInterval representing the even values from the value from to the value to.
    LongInterval.from(long newFrom)
    This static from method allows LongInterval to act as a fluent builder for itself.
    LongInterval.fromTo(long from, long to)
    Returns an LongInterval starting from the value from to the specified value to with a step value of 1.
    LongInterval.fromToBy(long from, long to, long stepBy)
    Returns an LongInterval for the range of integers inclusively between from and to with the specified stepBy value.
    LongInterval.oddsFromTo(long from, long to)
    Returns an LongInterval representing the odd values from the value from to the value to.
    LongInterval.oneTo(long count)
    Returns an LongInterval starting from 1 to the specified count value with a step value of 1.
    LongInterval.oneToBy(long count, long step)
    Returns an LongInterval starting from 1 to the specified count value with a step value of step.
    LongInterval.to(long newTo)
    This instance to method allows LongInterval to act as a fluent builder for itself.
    LongInterval.toReversed()
    Returns a new LongInterval with the from and to values reversed and the step value negated.
    LongInterval.zero()
    Returns an LongInterval starting at zero.
    LongInterval.zeroTo(long count)
    Returns an LongInterval starting from 0 to the specified count value with a step value of 1.
    LongInterval.zeroToBy(long count, long step)
    Returns an LongInterval starting from 0 to the specified count value with a step value of step.