mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
27 lines
958 B
Java
Generated
27 lines
958 B
Java
Generated
// Generated automatically from kotlin.ranges.IntProgression for testing purposes
|
|
|
|
package kotlin.ranges;
|
|
|
|
import kotlin.collections.IntIterator;
|
|
import kotlin.jvm.internal.markers.KMappedMarker;
|
|
|
|
public class IntProgression implements Iterable<Integer>, KMappedMarker
|
|
{
|
|
protected IntProgression() {}
|
|
public IntIterator iterator(){ return null; }
|
|
public IntProgression(int p0, int p1, int p2){}
|
|
public String toString(){ return null; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public boolean isEmpty(){ return false; }
|
|
public final int getFirst(){ return 0; }
|
|
public final int getLast(){ return 0; }
|
|
public final int getStep(){ return 0; }
|
|
public int hashCode(){ return 0; }
|
|
public static IntProgression.Companion Companion = null;
|
|
static public class Companion
|
|
{
|
|
protected Companion() {}
|
|
public final IntProgression fromClosedRange(int p0, int p1, int p2){ return null; }
|
|
}
|
|
}
|