Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,79 @@
package androidx.collection;
import kotlin.jvm.internal.Intrinsics;
import kotlin.jvm.internal.SourceDebugExtension;
@SourceDebugExtension({"SMAP\nLongSet.kt\nKotlin\n*S Kotlin\n*F\n+ 1 LongSet.kt\nandroidx/collection/LongSetKt\n+ 2 fake.kt\nkotlin/jvm/internal/FakeKt\n*L\n1#1,853:1\n1#2:854\n*E\n"})
/* loaded from: classes.dex */
public final class LongSetKt {
private static final MutableLongSet EmptyLongSet = new MutableLongSet(0);
private static final long[] EmptyLongArray = new long[0];
public static final LongSet emptyLongSet() {
return EmptyLongSet;
}
public static final long[] getEmptyLongArray() {
return EmptyLongArray;
}
public static final LongSet longSetOf() {
return EmptyLongSet;
}
public static final LongSet longSetOf(long j) {
return mutableLongSetOf(j);
}
public static final LongSet longSetOf(long j, long j2) {
return mutableLongSetOf(j, j2);
}
public static final LongSet longSetOf(long j, long j2, long j3) {
return mutableLongSetOf(j, j2, j3);
}
public static final LongSet longSetOf(long... elements) {
Intrinsics.checkNotNullParameter(elements, "elements");
MutableLongSet mutableLongSet = new MutableLongSet(elements.length);
mutableLongSet.plusAssign(elements);
return mutableLongSet;
}
public static final MutableLongSet mutableLongSetOf() {
return new MutableLongSet(0, 1, null);
}
public static final MutableLongSet mutableLongSetOf(long j) {
MutableLongSet mutableLongSet = new MutableLongSet(1);
mutableLongSet.plusAssign(j);
return mutableLongSet;
}
public static final MutableLongSet mutableLongSetOf(long j, long j2) {
MutableLongSet mutableLongSet = new MutableLongSet(2);
mutableLongSet.plusAssign(j);
mutableLongSet.plusAssign(j2);
return mutableLongSet;
}
public static final MutableLongSet mutableLongSetOf(long j, long j2, long j3) {
MutableLongSet mutableLongSet = new MutableLongSet(3);
mutableLongSet.plusAssign(j);
mutableLongSet.plusAssign(j2);
mutableLongSet.plusAssign(j3);
return mutableLongSet;
}
public static final MutableLongSet mutableLongSetOf(long... elements) {
Intrinsics.checkNotNullParameter(elements, "elements");
MutableLongSet mutableLongSet = new MutableLongSet(elements.length);
mutableLongSet.plusAssign(elements);
return mutableLongSet;
}
public static final int hash(long j) {
int hashCode = Long.hashCode(j) * ScatterMapKt.MurmurHashC1;
return hashCode ^ (hashCode << 16);
}
}