Files
rr3-apk/decompiled-community/sources/androidx/collection/ObjectLongMapKt.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

105 lines
4.8 KiB
Java

package androidx.collection;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public final class ObjectLongMapKt {
private static final MutableObjectLongMap<Object> EmptyObjectLongMap = new MutableObjectLongMap<>(0);
public static final <K> ObjectLongMap<K> emptyObjectLongMap() {
MutableObjectLongMap<Object> mutableObjectLongMap = EmptyObjectLongMap;
Intrinsics.checkNotNull(mutableObjectLongMap, "null cannot be cast to non-null type androidx.collection.ObjectLongMap<K of androidx.collection.ObjectLongMapKt.emptyObjectLongMap>");
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMap() {
MutableObjectLongMap<Object> mutableObjectLongMap = EmptyObjectLongMap;
Intrinsics.checkNotNull(mutableObjectLongMap, "null cannot be cast to non-null type androidx.collection.ObjectLongMap<K of androidx.collection.ObjectLongMapKt.objectLongMap>");
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMapOf(K k, long j) {
MutableObjectLongMap mutableObjectLongMap = new MutableObjectLongMap(0, 1, null);
mutableObjectLongMap.set(k, j);
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMapOf(K k, long j, K k2, long j2) {
MutableObjectLongMap mutableObjectLongMap = new MutableObjectLongMap(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMapOf(K k, long j, K k2, long j2, K k3, long j3) {
MutableObjectLongMap mutableObjectLongMap = new MutableObjectLongMap(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMapOf(K k, long j, K k2, long j2, K k3, long j3, K k4, long j4) {
MutableObjectLongMap mutableObjectLongMap = new MutableObjectLongMap(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
mutableObjectLongMap.set(k4, j4);
return mutableObjectLongMap;
}
public static final <K> ObjectLongMap<K> objectLongMapOf(K k, long j, K k2, long j2, K k3, long j3, K k4, long j4, K k5, long j5) {
MutableObjectLongMap mutableObjectLongMap = new MutableObjectLongMap(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
mutableObjectLongMap.set(k4, j4);
mutableObjectLongMap.set(k5, j5);
return mutableObjectLongMap;
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf() {
return new MutableObjectLongMap<>(0, 1, null);
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf(K k, long j) {
MutableObjectLongMap<K> mutableObjectLongMap = new MutableObjectLongMap<>(0, 1, null);
mutableObjectLongMap.set(k, j);
return mutableObjectLongMap;
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf(K k, long j, K k2, long j2) {
MutableObjectLongMap<K> mutableObjectLongMap = new MutableObjectLongMap<>(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
return mutableObjectLongMap;
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf(K k, long j, K k2, long j2, K k3, long j3) {
MutableObjectLongMap<K> mutableObjectLongMap = new MutableObjectLongMap<>(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
return mutableObjectLongMap;
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf(K k, long j, K k2, long j2, K k3, long j3, K k4, long j4) {
MutableObjectLongMap<K> mutableObjectLongMap = new MutableObjectLongMap<>(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
mutableObjectLongMap.set(k4, j4);
return mutableObjectLongMap;
}
public static final <K> MutableObjectLongMap<K> mutableObjectLongMapOf(K k, long j, K k2, long j2, K k3, long j3, K k4, long j4, K k5, long j5) {
MutableObjectLongMap<K> mutableObjectLongMap = new MutableObjectLongMap<>(0, 1, null);
mutableObjectLongMap.set(k, j);
mutableObjectLongMap.set(k2, j2);
mutableObjectLongMap.set(k3, j3);
mutableObjectLongMap.set(k4, j4);
mutableObjectLongMap.set(k5, j5);
return mutableObjectLongMap;
}
}