- 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
80 lines
2.6 KiB
Java
80 lines
2.6 KiB
Java
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);
|
|
}
|
|
}
|