public class DoubleProgression
A progression of values of type Double
.
Modifier and Type | Class and Description |
---|---|
class |
DoubleProgression.IteratorImpl
Iterator implementation for
class DoubleProgression . |
Constructor and Description |
---|
DoubleProgression(double start,
double end,
double step)
A progression of values of type
Double . |
Modifier and Type | Method and Description |
---|---|
boolean |
contains(double query) |
boolean |
equals(java.lang.Object other) |
double |
getEnd() |
double |
getStart() |
double |
getStep() |
int |
hashCode() |
boolean |
isEmpty() |
int |
items() |
DoubleProgression.IteratorImpl |
iterator() |
DoubleProgression |
minus(double offset) |
DoubleProgression |
plus(double offset) |
kotlin.Pair<com.acmerobotics.roadrunner.util.DoubleProgression,com.acmerobotics.roadrunner.util.DoubleProgression> |
split(double sep) |
java.lang.String |
toString() |
DoubleProgression |
unaryMinus() |
public DoubleProgression(double start, double end, double step)
A progression of values of type Double
.
@NotNull public DoubleProgression plus(double offset)
@NotNull public DoubleProgression minus(double offset)
@NotNull public DoubleProgression unaryMinus()
public boolean isEmpty()
public boolean equals(@Nullable java.lang.Object other)
public int hashCode()
@NotNull public DoubleProgression.IteratorImpl iterator()
public boolean contains(double query)
@NotNull public kotlin.Pair<com.acmerobotics.roadrunner.util.DoubleProgression,com.acmerobotics.roadrunner.util.DoubleProgression> split(double sep)
@NotNull public java.lang.String toString()
public int items()
public double getStart()
public double getEnd()
public double getStep()