Files
rr3-apk/decompiled/sources/androidx/collection/LongIntMapKt.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -08:00

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;
}
}