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

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

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