- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
99 lines
4.0 KiB
Java
99 lines
4.0 KiB
Java
package androidx.collection;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class IntFloatMapKt {
|
|
private static final MutableIntFloatMap EmptyIntFloatMap = new MutableIntFloatMap(0);
|
|
|
|
public static final IntFloatMap emptyIntFloatMap() {
|
|
return EmptyIntFloatMap;
|
|
}
|
|
|
|
public static final IntFloatMap intFloatMapOf() {
|
|
return EmptyIntFloatMap;
|
|
}
|
|
|
|
public static final IntFloatMap intFloatMapOf(int i, float f) {
|
|
MutableIntFloatMap mutableIntFloatMap = new MutableIntFloatMap(0, 1, null);
|
|
mutableIntFloatMap.set(i, f);
|
|
return mutableIntFloatMap;
|
|
}
|
|
|
|
public static final IntFloatMap intFloatMapOf(int i, float f, int i2, float f2) {
|
|
MutableIntFloatMap mutableIntFloatMap = new MutableIntFloatMap(0, 1, null);
|
|
mutableIntFloatMap.set(i, f);
|
|
mutableIntFloatMap.set(i2, f2);
|
|
return mutableIntFloatMap;
|
|
}
|
|
|
|
public static final IntFloatMap intFloatMapOf(int i, float f, int i2, float f2, int i3, float f3) {
|
|
MutableIntFloatMap mutableIntFloatMap = new MutableIntFloatMap(0, 1, null);
|
|
mutableIntFloatMap.set(i, f);
|
|
mutableIntFloatMap.set(i2, f2);
|
|
mutableIntFloatMap.set(i3, f3);
|
|
return mutableIntFloatMap;
|
|
}
|
|
|
|
public static final IntFloatMap intFloatMapOf(int i, float f, int i2, float f2, int i3, float f3, int i4, float f4) {
|
|
MutableIntFloatMap mutableIntFloatMap = new MutableIntFloatMap(0, 1, null);
|
|
mutableIntFloatMap.set(i, f);
|
|
mutableIntFloatMap.set(i2, f2);
|
|
mutableIntFloatMap.set(i3, f3);
|
|
mutableIntFloatMap.set(i4, f4);
|
|
return mutableIntFloatMap;
|
|
}
|
|
|
|
public static final IntFloatMap intFloatMapOf(int i, float f, int i2, float f2, int i3, float f3, int i4, float f4, int i5, float f5) {
|
|
MutableIntFloatMap mutableIntFloatMap = new MutableIntFloatMap(0, 1, null);
|
|
mutableIntFloatMap.set(i, f);
|
|
mutableIntFloatMap.set(i2, f2);
|
|
mutableIntFloatMap.set(i3, f3);
|
|
mutableIntFloatMap.set(i4, f4);
|
|
mutableIntFloatMap.set(i5, f5);
|
|
return mutableIntFloatMap;
|
|
}
|
|
|
|
public static final MutableIntFloatMap mutableIntFloatMapOf() {
|
|
return new MutableIntFloatMap(0, 1, null);
|
|
}
|
|
|
|
public static final MutableIntFloatMap mutableIntFloatMapOf(int i, float f) {
|
|
MutableIntFloatMap mutableIntFloatMap = new MutableIntFloatMap(0, 1, null);
|
|
mutableIntFloatMap.set(i, f);
|
|
return mutableIntFloatMap;
|
|
}
|
|
|
|
public static final MutableIntFloatMap mutableIntFloatMapOf(int i, float f, int i2, float f2) {
|
|
MutableIntFloatMap mutableIntFloatMap = new MutableIntFloatMap(0, 1, null);
|
|
mutableIntFloatMap.set(i, f);
|
|
mutableIntFloatMap.set(i2, f2);
|
|
return mutableIntFloatMap;
|
|
}
|
|
|
|
public static final MutableIntFloatMap mutableIntFloatMapOf(int i, float f, int i2, float f2, int i3, float f3) {
|
|
MutableIntFloatMap mutableIntFloatMap = new MutableIntFloatMap(0, 1, null);
|
|
mutableIntFloatMap.set(i, f);
|
|
mutableIntFloatMap.set(i2, f2);
|
|
mutableIntFloatMap.set(i3, f3);
|
|
return mutableIntFloatMap;
|
|
}
|
|
|
|
public static final MutableIntFloatMap mutableIntFloatMapOf(int i, float f, int i2, float f2, int i3, float f3, int i4, float f4) {
|
|
MutableIntFloatMap mutableIntFloatMap = new MutableIntFloatMap(0, 1, null);
|
|
mutableIntFloatMap.set(i, f);
|
|
mutableIntFloatMap.set(i2, f2);
|
|
mutableIntFloatMap.set(i3, f3);
|
|
mutableIntFloatMap.set(i4, f4);
|
|
return mutableIntFloatMap;
|
|
}
|
|
|
|
public static final MutableIntFloatMap mutableIntFloatMapOf(int i, float f, int i2, float f2, int i3, float f3, int i4, float f4, int i5, float f5) {
|
|
MutableIntFloatMap mutableIntFloatMap = new MutableIntFloatMap(0, 1, null);
|
|
mutableIntFloatMap.set(i, f);
|
|
mutableIntFloatMap.set(i2, f2);
|
|
mutableIntFloatMap.set(i3, f3);
|
|
mutableIntFloatMap.set(i4, f4);
|
|
mutableIntFloatMap.set(i5, f5);
|
|
return mutableIntFloatMap;
|
|
}
|
|
}
|