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