- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
34 lines
883 B
Java
34 lines
883 B
Java
package kotlin.jvm.internal;
|
|
|
|
import java.util.NoSuchElementException;
|
|
import kotlin.collections.IntIterator;
|
|
|
|
/* loaded from: classes5.dex */
|
|
final class ArrayIntIterator extends IntIterator {
|
|
private final int[] array;
|
|
private int index;
|
|
|
|
public ArrayIntIterator(int[] array) {
|
|
Intrinsics.checkNotNullParameter(array, "array");
|
|
this.array = array;
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public boolean hasNext() {
|
|
return this.index < this.array.length;
|
|
}
|
|
|
|
@Override // kotlin.collections.IntIterator
|
|
public int nextInt() {
|
|
try {
|
|
int[] iArr = this.array;
|
|
int i = this.index;
|
|
this.index = i + 1;
|
|
return iArr[i];
|
|
} catch (ArrayIndexOutOfBoundsException e) {
|
|
this.index--;
|
|
throw new NoSuchElementException(e.getMessage());
|
|
}
|
|
}
|
|
}
|