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,103 @@
package kotlin.collections;
import java.util.Collection;
import java.util.Iterator;
import kotlin.jvm.internal.ArrayIteratorKt;
import kotlin.jvm.internal.CollectionToArray;
import kotlin.jvm.internal.Intrinsics;
import kotlin.jvm.internal.markers.KMappedMarker;
/* loaded from: classes5.dex */
public final class ArrayAsCollection implements Collection, KMappedMarker {
public final boolean isVarargs;
public final Object[] values;
@Override // java.util.Collection
public boolean add(Object obj) {
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
}
@Override // java.util.Collection
public boolean addAll(Collection collection) {
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
}
@Override // java.util.Collection
public void clear() {
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
}
@Override // java.util.Collection
public boolean remove(Object obj) {
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
}
@Override // java.util.Collection
public boolean removeAll(Collection collection) {
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
}
@Override // java.util.Collection
public boolean retainAll(Collection collection) {
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
}
@Override // java.util.Collection
public Object[] toArray(Object[] array) {
Intrinsics.checkNotNullParameter(array, "array");
return CollectionToArray.toArray(this, array);
}
public ArrayAsCollection(Object[] values, boolean z) {
Intrinsics.checkNotNullParameter(values, "values");
this.values = values;
this.isVarargs = z;
}
@Override // java.util.Collection
public final /* bridge */ int size() {
return getSize();
}
public int getSize() {
return this.values.length;
}
@Override // java.util.Collection
public boolean isEmpty() {
return this.values.length == 0;
}
@Override // java.util.Collection
public boolean contains(Object obj) {
boolean contains;
contains = ArraysKt___ArraysKt.contains(this.values, obj);
return contains;
}
@Override // java.util.Collection
public boolean containsAll(Collection elements) {
Intrinsics.checkNotNullParameter(elements, "elements");
Collection collection = elements;
if (collection.isEmpty()) {
return true;
}
Iterator it = collection.iterator();
while (it.hasNext()) {
if (!contains(it.next())) {
return false;
}
}
return true;
}
@Override // java.util.Collection, java.lang.Iterable
public Iterator iterator() {
return ArrayIteratorKt.iterator(this.values);
}
@Override // java.util.Collection
public final Object[] toArray() {
return CollectionsKt__CollectionsJVMKt.copyToArrayOfAny(this.values, this.isVarargs);
}
}