- 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
4.1 KiB
Java
99 lines
4.1 KiB
Java
package androidx.collection;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class FloatLongMapKt {
|
|
private static final MutableFloatLongMap EmptyFloatLongMap = new MutableFloatLongMap(0);
|
|
|
|
public static final FloatLongMap emptyFloatLongMap() {
|
|
return EmptyFloatLongMap;
|
|
}
|
|
|
|
public static final FloatLongMap floatLongMapOf() {
|
|
return EmptyFloatLongMap;
|
|
}
|
|
|
|
public static final FloatLongMap floatLongMapOf(float f, long j) {
|
|
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
|
|
mutableFloatLongMap.set(f, j);
|
|
return mutableFloatLongMap;
|
|
}
|
|
|
|
public static final FloatLongMap floatLongMapOf(float f, long j, float f2, long j2) {
|
|
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
|
|
mutableFloatLongMap.set(f, j);
|
|
mutableFloatLongMap.set(f2, j2);
|
|
return mutableFloatLongMap;
|
|
}
|
|
|
|
public static final FloatLongMap floatLongMapOf(float f, long j, float f2, long j2, float f3, long j3) {
|
|
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
|
|
mutableFloatLongMap.set(f, j);
|
|
mutableFloatLongMap.set(f2, j2);
|
|
mutableFloatLongMap.set(f3, j3);
|
|
return mutableFloatLongMap;
|
|
}
|
|
|
|
public static final FloatLongMap floatLongMapOf(float f, long j, float f2, long j2, float f3, long j3, float f4, long j4) {
|
|
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
|
|
mutableFloatLongMap.set(f, j);
|
|
mutableFloatLongMap.set(f2, j2);
|
|
mutableFloatLongMap.set(f3, j3);
|
|
mutableFloatLongMap.set(f4, j4);
|
|
return mutableFloatLongMap;
|
|
}
|
|
|
|
public static final FloatLongMap floatLongMapOf(float f, long j, float f2, long j2, float f3, long j3, float f4, long j4, float f5, long j5) {
|
|
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
|
|
mutableFloatLongMap.set(f, j);
|
|
mutableFloatLongMap.set(f2, j2);
|
|
mutableFloatLongMap.set(f3, j3);
|
|
mutableFloatLongMap.set(f4, j4);
|
|
mutableFloatLongMap.set(f5, j5);
|
|
return mutableFloatLongMap;
|
|
}
|
|
|
|
public static final MutableFloatLongMap mutableFloatLongMapOf() {
|
|
return new MutableFloatLongMap(0, 1, null);
|
|
}
|
|
|
|
public static final MutableFloatLongMap mutableFloatLongMapOf(float f, long j) {
|
|
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
|
|
mutableFloatLongMap.set(f, j);
|
|
return mutableFloatLongMap;
|
|
}
|
|
|
|
public static final MutableFloatLongMap mutableFloatLongMapOf(float f, long j, float f2, long j2) {
|
|
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
|
|
mutableFloatLongMap.set(f, j);
|
|
mutableFloatLongMap.set(f2, j2);
|
|
return mutableFloatLongMap;
|
|
}
|
|
|
|
public static final MutableFloatLongMap mutableFloatLongMapOf(float f, long j, float f2, long j2, float f3, long j3) {
|
|
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
|
|
mutableFloatLongMap.set(f, j);
|
|
mutableFloatLongMap.set(f2, j2);
|
|
mutableFloatLongMap.set(f3, j3);
|
|
return mutableFloatLongMap;
|
|
}
|
|
|
|
public static final MutableFloatLongMap mutableFloatLongMapOf(float f, long j, float f2, long j2, float f3, long j3, float f4, long j4) {
|
|
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
|
|
mutableFloatLongMap.set(f, j);
|
|
mutableFloatLongMap.set(f2, j2);
|
|
mutableFloatLongMap.set(f3, j3);
|
|
mutableFloatLongMap.set(f4, j4);
|
|
return mutableFloatLongMap;
|
|
}
|
|
|
|
public static final MutableFloatLongMap mutableFloatLongMapOf(float f, long j, float f2, long j2, float f3, long j3, float f4, long j4, float f5, long j5) {
|
|
MutableFloatLongMap mutableFloatLongMap = new MutableFloatLongMap(0, 1, null);
|
|
mutableFloatLongMap.set(f, j);
|
|
mutableFloatLongMap.set(f2, j2);
|
|
mutableFloatLongMap.set(f3, j3);
|
|
mutableFloatLongMap.set(f4, j4);
|
|
mutableFloatLongMap.set(f5, j5);
|
|
return mutableFloatLongMap;
|
|
}
|
|
}
|