package androidx.collection; import kotlin.jvm.internal.Intrinsics; /* loaded from: classes.dex */ public final class ObjectIntMapKt { private static final MutableObjectIntMap EmptyObjectIntMap = new MutableObjectIntMap<>(0); public static final ObjectIntMap emptyObjectIntMap() { MutableObjectIntMap mutableObjectIntMap = EmptyObjectIntMap; Intrinsics.checkNotNull(mutableObjectIntMap, "null cannot be cast to non-null type androidx.collection.ObjectIntMap"); return mutableObjectIntMap; } public static final ObjectIntMap objectIntMap() { MutableObjectIntMap mutableObjectIntMap = EmptyObjectIntMap; Intrinsics.checkNotNull(mutableObjectIntMap, "null cannot be cast to non-null type androidx.collection.ObjectIntMap"); return mutableObjectIntMap; } public static final ObjectIntMap objectIntMapOf(K k, int i) { MutableObjectIntMap mutableObjectIntMap = new MutableObjectIntMap(0, 1, null); mutableObjectIntMap.set(k, i); return mutableObjectIntMap; } public static final ObjectIntMap objectIntMapOf(K k, int i, K k2, int i2) { MutableObjectIntMap mutableObjectIntMap = new MutableObjectIntMap(0, 1, null); mutableObjectIntMap.set(k, i); mutableObjectIntMap.set(k2, i2); return mutableObjectIntMap; } public static final ObjectIntMap objectIntMapOf(K k, int i, K k2, int i2, K k3, int i3) { MutableObjectIntMap mutableObjectIntMap = new MutableObjectIntMap(0, 1, null); mutableObjectIntMap.set(k, i); mutableObjectIntMap.set(k2, i2); mutableObjectIntMap.set(k3, i3); return mutableObjectIntMap; } public static final ObjectIntMap objectIntMapOf(K k, int i, K k2, int i2, K k3, int i3, K k4, int i4) { MutableObjectIntMap mutableObjectIntMap = new MutableObjectIntMap(0, 1, null); mutableObjectIntMap.set(k, i); mutableObjectIntMap.set(k2, i2); mutableObjectIntMap.set(k3, i3); mutableObjectIntMap.set(k4, i4); return mutableObjectIntMap; } public static final ObjectIntMap objectIntMapOf(K k, int i, K k2, int i2, K k3, int i3, K k4, int i4, K k5, int i5) { MutableObjectIntMap mutableObjectIntMap = new MutableObjectIntMap(0, 1, null); mutableObjectIntMap.set(k, i); mutableObjectIntMap.set(k2, i2); mutableObjectIntMap.set(k3, i3); mutableObjectIntMap.set(k4, i4); mutableObjectIntMap.set(k5, i5); return mutableObjectIntMap; } public static final MutableObjectIntMap mutableObjectIntMapOf() { return new MutableObjectIntMap<>(0, 1, null); } public static final MutableObjectIntMap mutableObjectIntMapOf(K k, int i) { MutableObjectIntMap mutableObjectIntMap = new MutableObjectIntMap<>(0, 1, null); mutableObjectIntMap.set(k, i); return mutableObjectIntMap; } public static final MutableObjectIntMap mutableObjectIntMapOf(K k, int i, K k2, int i2) { MutableObjectIntMap mutableObjectIntMap = new MutableObjectIntMap<>(0, 1, null); mutableObjectIntMap.set(k, i); mutableObjectIntMap.set(k2, i2); return mutableObjectIntMap; } public static final MutableObjectIntMap mutableObjectIntMapOf(K k, int i, K k2, int i2, K k3, int i3) { MutableObjectIntMap mutableObjectIntMap = new MutableObjectIntMap<>(0, 1, null); mutableObjectIntMap.set(k, i); mutableObjectIntMap.set(k2, i2); mutableObjectIntMap.set(k3, i3); return mutableObjectIntMap; } public static final MutableObjectIntMap mutableObjectIntMapOf(K k, int i, K k2, int i2, K k3, int i3, K k4, int i4) { MutableObjectIntMap mutableObjectIntMap = new MutableObjectIntMap<>(0, 1, null); mutableObjectIntMap.set(k, i); mutableObjectIntMap.set(k2, i2); mutableObjectIntMap.set(k3, i3); mutableObjectIntMap.set(k4, i4); return mutableObjectIntMap; } public static final MutableObjectIntMap mutableObjectIntMapOf(K k, int i, K k2, int i2, K k3, int i3, K k4, int i4, K k5, int i5) { MutableObjectIntMap mutableObjectIntMap = new MutableObjectIntMap<>(0, 1, null); mutableObjectIntMap.set(k, i); mutableObjectIntMap.set(k2, i2); mutableObjectIntMap.set(k3, i3); mutableObjectIntMap.set(k4, i4); mutableObjectIntMap.set(k5, i5); return mutableObjectIntMap; } }