- 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
99 lines
3.8 KiB
Java
99 lines
3.8 KiB
Java
package androidx.collection;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class LongIntMapKt {
|
|
private static final MutableLongIntMap EmptyLongIntMap = new MutableLongIntMap(0);
|
|
|
|
public static final LongIntMap emptyLongIntMap() {
|
|
return EmptyLongIntMap;
|
|
}
|
|
|
|
public static final LongIntMap longIntMapOf() {
|
|
return EmptyLongIntMap;
|
|
}
|
|
|
|
public static final LongIntMap longIntMapOf(long j, int i) {
|
|
MutableLongIntMap mutableLongIntMap = new MutableLongIntMap(0, 1, null);
|
|
mutableLongIntMap.set(j, i);
|
|
return mutableLongIntMap;
|
|
}
|
|
|
|
public static final LongIntMap longIntMapOf(long j, int i, long j2, int i2) {
|
|
MutableLongIntMap mutableLongIntMap = new MutableLongIntMap(0, 1, null);
|
|
mutableLongIntMap.set(j, i);
|
|
mutableLongIntMap.set(j2, i2);
|
|
return mutableLongIntMap;
|
|
}
|
|
|
|
public static final LongIntMap longIntMapOf(long j, int i, long j2, int i2, long j3, int i3) {
|
|
MutableLongIntMap mutableLongIntMap = new MutableLongIntMap(0, 1, null);
|
|
mutableLongIntMap.set(j, i);
|
|
mutableLongIntMap.set(j2, i2);
|
|
mutableLongIntMap.set(j3, i3);
|
|
return mutableLongIntMap;
|
|
}
|
|
|
|
public static final LongIntMap longIntMapOf(long j, int i, long j2, int i2, long j3, int i3, long j4, int i4) {
|
|
MutableLongIntMap mutableLongIntMap = new MutableLongIntMap(0, 1, null);
|
|
mutableLongIntMap.set(j, i);
|
|
mutableLongIntMap.set(j2, i2);
|
|
mutableLongIntMap.set(j3, i3);
|
|
mutableLongIntMap.set(j4, i4);
|
|
return mutableLongIntMap;
|
|
}
|
|
|
|
public static final LongIntMap longIntMapOf(long j, int i, long j2, int i2, long j3, int i3, long j4, int i4, long j5, int i5) {
|
|
MutableLongIntMap mutableLongIntMap = new MutableLongIntMap(0, 1, null);
|
|
mutableLongIntMap.set(j, i);
|
|
mutableLongIntMap.set(j2, i2);
|
|
mutableLongIntMap.set(j3, i3);
|
|
mutableLongIntMap.set(j4, i4);
|
|
mutableLongIntMap.set(j5, i5);
|
|
return mutableLongIntMap;
|
|
}
|
|
|
|
public static final MutableLongIntMap mutableLongIntMapOf() {
|
|
return new MutableLongIntMap(0, 1, null);
|
|
}
|
|
|
|
public static final MutableLongIntMap mutableLongIntMapOf(long j, int i) {
|
|
MutableLongIntMap mutableLongIntMap = new MutableLongIntMap(0, 1, null);
|
|
mutableLongIntMap.set(j, i);
|
|
return mutableLongIntMap;
|
|
}
|
|
|
|
public static final MutableLongIntMap mutableLongIntMapOf(long j, int i, long j2, int i2) {
|
|
MutableLongIntMap mutableLongIntMap = new MutableLongIntMap(0, 1, null);
|
|
mutableLongIntMap.set(j, i);
|
|
mutableLongIntMap.set(j2, i2);
|
|
return mutableLongIntMap;
|
|
}
|
|
|
|
public static final MutableLongIntMap mutableLongIntMapOf(long j, int i, long j2, int i2, long j3, int i3) {
|
|
MutableLongIntMap mutableLongIntMap = new MutableLongIntMap(0, 1, null);
|
|
mutableLongIntMap.set(j, i);
|
|
mutableLongIntMap.set(j2, i2);
|
|
mutableLongIntMap.set(j3, i3);
|
|
return mutableLongIntMap;
|
|
}
|
|
|
|
public static final MutableLongIntMap mutableLongIntMapOf(long j, int i, long j2, int i2, long j3, int i3, long j4, int i4) {
|
|
MutableLongIntMap mutableLongIntMap = new MutableLongIntMap(0, 1, null);
|
|
mutableLongIntMap.set(j, i);
|
|
mutableLongIntMap.set(j2, i2);
|
|
mutableLongIntMap.set(j3, i3);
|
|
mutableLongIntMap.set(j4, i4);
|
|
return mutableLongIntMap;
|
|
}
|
|
|
|
public static final MutableLongIntMap mutableLongIntMapOf(long j, int i, long j2, int i2, long j3, int i3, long j4, int i4, long j5, int i5) {
|
|
MutableLongIntMap mutableLongIntMap = new MutableLongIntMap(0, 1, null);
|
|
mutableLongIntMap.set(j, i);
|
|
mutableLongIntMap.set(j2, i2);
|
|
mutableLongIntMap.set(j3, i3);
|
|
mutableLongIntMap.set(j4, i4);
|
|
mutableLongIntMap.set(j5, i5);
|
|
return mutableLongIntMap;
|
|
}
|
|
}
|