- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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;
|
|
}
|
|
}
|