Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
package kotlin.ranges;
import java.util.NoSuchElementException;
import kotlin.collections.CharIterator;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes5.dex */
public final class CharProgressionIterator extends CharIterator {
public final int finalElement;
public boolean hasNext;
public int next;
public final int step;
@Override // java.util.Iterator
public boolean hasNext() {
return this.hasNext;
}
public CharProgressionIterator(char c, char c2, int i) {
this.step = i;
this.finalElement = c2;
boolean z = true;
if (i <= 0 ? Intrinsics.compare((int) c, (int) c2) < 0 : Intrinsics.compare((int) c, (int) c2) > 0) {
z = false;
}
this.hasNext = z;
this.next = z ? c : c2;
}
@Override // kotlin.collections.CharIterator
public char nextChar() {
int i = this.next;
if (i != this.finalElement) {
this.next = this.step + i;
} else {
if (!this.hasNext) {
throw new NoSuchElementException();
}
this.hasNext = false;
}
return (char) i;
}
}