mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
63 lines
3 KiB
Java
63 lines
3 KiB
Java
package kotlin.ranges;
|
|
|
|
import java.util.Iterator;
|
|
import java.util.NoSuchElementException;
|
|
import kotlin.Metadata;
|
|
import kotlin.UInt;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.markers.KMappedMarker;
|
|
|
|
/* compiled from: UIntRange.kt */
|
|
@Metadata(d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010(\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0004\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0003\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001B\u001d\u0012\u0006\u0010\u0003\u001a\u00020\u0002\u0012\u0006\u0010\u0004\u001a\u00020\u0002\u0012\u0006\u0010\u0005\u001a\u00020\u0006¢\u0006\u0002\u0010\u0007J\t\u0010\n\u001a\u00020\u000bH\u0096\u0002J\u0013\u0010\f\u001a\u00020\u0002H\u0096\u0002ø\u0001\u0000¢\u0006\u0004\b\r\u0010\u000eR\u0013\u0010\b\u001a\u00020\u0002X\u0082\u0004ø\u0001\u0000¢\u0006\u0004\n\u0002\u0010\tR\u000e\u0010\n\u001a\u00020\u000bX\u0082\u000e¢\u0006\u0002\n\u0000R\u0013\u0010\f\u001a\u00020\u0002X\u0082\u000eø\u0001\u0000¢\u0006\u0004\n\u0002\u0010\tR\u0013\u0010\u0005\u001a\u00020\u0002X\u0082\u0004ø\u0001\u0000¢\u0006\u0004\n\u0002\u0010\t\u0082\u0002\u0004\n\u0002\b!¨\u0006\u000f"}, d2 = {"Lkotlin/ranges/UIntProgressionIterator;", "", "Lkotlin/UInt;", "first", "last", "step", "", "(IIILkotlin/jvm/internal/DefaultConstructorMarker;)V", "finalElement", "I", "hasNext", "", "next", "next-pVg5ArA", "()I", "kotlin-stdlib"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
|
/* loaded from: classes3.dex */
|
|
final class UIntProgressionIterator implements Iterator<UInt>, KMappedMarker {
|
|
private final int finalElement;
|
|
private boolean hasNext;
|
|
private int next;
|
|
private final int step;
|
|
|
|
public /* synthetic */ UIntProgressionIterator(int i, int i2, int i3, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(i, i2, i3);
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public boolean hasNext() {
|
|
return this.hasNext;
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public void remove() {
|
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
|
}
|
|
|
|
private UIntProgressionIterator(int i, int i2, int i3) {
|
|
this.finalElement = i2;
|
|
boolean z = true;
|
|
int compareUnsigned = Integer.compareUnsigned(i, i2);
|
|
if (i3 <= 0 ? compareUnsigned < 0 : compareUnsigned > 0) {
|
|
z = false;
|
|
}
|
|
this.hasNext = z;
|
|
this.step = UInt.m5793constructorimpl(i3);
|
|
this.next = this.hasNext ? i : i2;
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public /* bridge */ /* synthetic */ UInt next() {
|
|
return UInt.m5787boximpl(m6925nextpVg5ArA());
|
|
}
|
|
|
|
/* renamed from: next-pVg5ArA, reason: not valid java name */
|
|
public int m6925nextpVg5ArA() {
|
|
int i = this.next;
|
|
if (i != this.finalElement) {
|
|
this.next = UInt.m5793constructorimpl(this.step + i);
|
|
} else {
|
|
if (!this.hasNext) {
|
|
throw new NoSuchElementException();
|
|
}
|
|
this.hasNext = false;
|
|
}
|
|
return i;
|
|
}
|
|
}
|