- 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 IntLongMapKt {
|
|
private static final MutableIntLongMap EmptyIntLongMap = new MutableIntLongMap(0);
|
|
|
|
public static final IntLongMap emptyIntLongMap() {
|
|
return EmptyIntLongMap;
|
|
}
|
|
|
|
public static final IntLongMap intLongMapOf() {
|
|
return EmptyIntLongMap;
|
|
}
|
|
|
|
public static final IntLongMap intLongMapOf(int i, long j) {
|
|
MutableIntLongMap mutableIntLongMap = new MutableIntLongMap(0, 1, null);
|
|
mutableIntLongMap.set(i, j);
|
|
return mutableIntLongMap;
|
|
}
|
|
|
|
public static final IntLongMap intLongMapOf(int i, long j, int i2, long j2) {
|
|
MutableIntLongMap mutableIntLongMap = new MutableIntLongMap(0, 1, null);
|
|
mutableIntLongMap.set(i, j);
|
|
mutableIntLongMap.set(i2, j2);
|
|
return mutableIntLongMap;
|
|
}
|
|
|
|
public static final IntLongMap intLongMapOf(int i, long j, int i2, long j2, int i3, long j3) {
|
|
MutableIntLongMap mutableIntLongMap = new MutableIntLongMap(0, 1, null);
|
|
mutableIntLongMap.set(i, j);
|
|
mutableIntLongMap.set(i2, j2);
|
|
mutableIntLongMap.set(i3, j3);
|
|
return mutableIntLongMap;
|
|
}
|
|
|
|
public static final IntLongMap intLongMapOf(int i, long j, int i2, long j2, int i3, long j3, int i4, long j4) {
|
|
MutableIntLongMap mutableIntLongMap = new MutableIntLongMap(0, 1, null);
|
|
mutableIntLongMap.set(i, j);
|
|
mutableIntLongMap.set(i2, j2);
|
|
mutableIntLongMap.set(i3, j3);
|
|
mutableIntLongMap.set(i4, j4);
|
|
return mutableIntLongMap;
|
|
}
|
|
|
|
public static final IntLongMap intLongMapOf(int i, long j, int i2, long j2, int i3, long j3, int i4, long j4, int i5, long j5) {
|
|
MutableIntLongMap mutableIntLongMap = new MutableIntLongMap(0, 1, null);
|
|
mutableIntLongMap.set(i, j);
|
|
mutableIntLongMap.set(i2, j2);
|
|
mutableIntLongMap.set(i3, j3);
|
|
mutableIntLongMap.set(i4, j4);
|
|
mutableIntLongMap.set(i5, j5);
|
|
return mutableIntLongMap;
|
|
}
|
|
|
|
public static final MutableIntLongMap mutableIntLongMapOf() {
|
|
return new MutableIntLongMap(0, 1, null);
|
|
}
|
|
|
|
public static final MutableIntLongMap mutableIntLongMapOf(int i, long j) {
|
|
MutableIntLongMap mutableIntLongMap = new MutableIntLongMap(0, 1, null);
|
|
mutableIntLongMap.set(i, j);
|
|
return mutableIntLongMap;
|
|
}
|
|
|
|
public static final MutableIntLongMap mutableIntLongMapOf(int i, long j, int i2, long j2) {
|
|
MutableIntLongMap mutableIntLongMap = new MutableIntLongMap(0, 1, null);
|
|
mutableIntLongMap.set(i, j);
|
|
mutableIntLongMap.set(i2, j2);
|
|
return mutableIntLongMap;
|
|
}
|
|
|
|
public static final MutableIntLongMap mutableIntLongMapOf(int i, long j, int i2, long j2, int i3, long j3) {
|
|
MutableIntLongMap mutableIntLongMap = new MutableIntLongMap(0, 1, null);
|
|
mutableIntLongMap.set(i, j);
|
|
mutableIntLongMap.set(i2, j2);
|
|
mutableIntLongMap.set(i3, j3);
|
|
return mutableIntLongMap;
|
|
}
|
|
|
|
public static final MutableIntLongMap mutableIntLongMapOf(int i, long j, int i2, long j2, int i3, long j3, int i4, long j4) {
|
|
MutableIntLongMap mutableIntLongMap = new MutableIntLongMap(0, 1, null);
|
|
mutableIntLongMap.set(i, j);
|
|
mutableIntLongMap.set(i2, j2);
|
|
mutableIntLongMap.set(i3, j3);
|
|
mutableIntLongMap.set(i4, j4);
|
|
return mutableIntLongMap;
|
|
}
|
|
|
|
public static final MutableIntLongMap mutableIntLongMapOf(int i, long j, int i2, long j2, int i3, long j3, int i4, long j4, int i5, long j5) {
|
|
MutableIntLongMap mutableIntLongMap = new MutableIntLongMap(0, 1, null);
|
|
mutableIntLongMap.set(i, j);
|
|
mutableIntLongMap.set(i2, j2);
|
|
mutableIntLongMap.set(i3, j3);
|
|
mutableIntLongMap.set(i4, j4);
|
|
mutableIntLongMap.set(i5, j5);
|
|
return mutableIntLongMap;
|
|
}
|
|
}
|