Files
codeql/java/ql/test/stubs/okhttp-4.9.3/kotlin/ranges/IntProgression.java
Joe Farebrother 4afecf575e Generate more stubs for okhttp and fix tests.
Some generated stubs needed to be manually corrected.
2022-12-09 13:41:17 +00:00

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; }
}
}