mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
50 lines
3.7 KiB
Java
50 lines
3.7 KiB
Java
package kotlin.collections;
|
|
|
|
import androidx.constraintlayout.widget.ConstraintLayout;
|
|
import androidx.exifinterface.media.ExifInterface;
|
|
import java.util.Iterator;
|
|
import java.util.LinkedHashMap;
|
|
import java.util.Map;
|
|
import kotlin.Metadata;
|
|
import kotlin.jvm.functions.Function1;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlin.jvm.internal.Ref;
|
|
import kotlin.jvm.internal.TypeIntrinsics;
|
|
|
|
/* compiled from: GroupingJVM.kt */
|
|
@Metadata(d1 = {"\u0000&\n\u0000\n\u0002\u0010$\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010%\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\u0010&\n\u0000\u001a0\u0010\u0000\u001a\u000e\u0012\u0004\u0012\u0002H\u0002\u0012\u0004\u0012\u00020\u00030\u0001\"\u0004\b\u0000\u0010\u0004\"\u0004\b\u0001\u0010\u0002*\u000e\u0012\u0004\u0012\u0002H\u0004\u0012\u0004\u0012\u0002H\u00020\u0005H\u0007\u001aZ\u0010\u0006\u001a\u000e\u0012\u0004\u0012\u0002H\u0002\u0012\u0004\u0012\u0002H\b0\u0007\"\u0004\b\u0000\u0010\u0002\"\u0004\b\u0001\u0010\t\"\u0004\b\u0002\u0010\b*\u000e\u0012\u0004\u0012\u0002H\u0002\u0012\u0004\u0012\u0002H\t0\u00072\u001e\u0010\n\u001a\u001a\u0012\u0010\u0012\u000e\u0012\u0004\u0012\u0002H\u0002\u0012\u0004\u0012\u0002H\t0\f\u0012\u0004\u0012\u0002H\b0\u000bH\u0081\bø\u0001\u0000\u0082\u0002\u0007\n\u0005\b\u009920\u0001¨\u0006\r"}, d2 = {"eachCount", "", "K", "", ExifInterface.GPS_DIRECTION_TRUE, "Lkotlin/collections/Grouping;", "mapValuesInPlace", "", "R", ExifInterface.GPS_MEASUREMENT_INTERRUPTED, "f", "Lkotlin/Function1;", "", "kotlin-stdlib"}, k = 5, mv = {1, 9, 0}, xi = ConstraintLayout.LayoutParams.Table.LAYOUT_EDITOR_ABSOLUTEX, xs = "kotlin/collections/GroupingKt")
|
|
/* loaded from: classes3.dex */
|
|
class GroupingKt__GroupingJVMKt {
|
|
public static final <T, K> Map<K, Integer> eachCount(Grouping<T, ? extends K> grouping) {
|
|
Intrinsics.checkNotNullParameter(grouping, "<this>");
|
|
LinkedHashMap linkedHashMap = new LinkedHashMap();
|
|
Iterator<T> sourceIterator = grouping.sourceIterator();
|
|
while (sourceIterator.hasNext()) {
|
|
K keyOf = grouping.keyOf(sourceIterator.next());
|
|
Object obj = linkedHashMap.get(keyOf);
|
|
if (obj == null && !linkedHashMap.containsKey(keyOf)) {
|
|
obj = new Ref.IntRef();
|
|
}
|
|
Ref.IntRef intRef = (Ref.IntRef) obj;
|
|
intRef.element++;
|
|
linkedHashMap.put(keyOf, intRef);
|
|
}
|
|
for (Map.Entry entry : linkedHashMap.entrySet()) {
|
|
Intrinsics.checkNotNull(entry, "null cannot be cast to non-null type kotlin.collections.MutableMap.MutableEntry<K of kotlin.collections.GroupingKt__GroupingJVMKt.mapValuesInPlace$lambda$4, R of kotlin.collections.GroupingKt__GroupingJVMKt.mapValuesInPlace$lambda$4>");
|
|
TypeIntrinsics.asMutableMapEntry(entry).setValue(Integer.valueOf(((Ref.IntRef) entry.getValue()).element));
|
|
}
|
|
return TypeIntrinsics.asMutableMap(linkedHashMap);
|
|
}
|
|
|
|
private static final <K, V, R> Map<K, R> mapValuesInPlace(Map<K, V> map, Function1<? super Map.Entry<? extends K, ? extends V>, ? extends R> f) {
|
|
Intrinsics.checkNotNullParameter(map, "<this>");
|
|
Intrinsics.checkNotNullParameter(f, "f");
|
|
Iterator<T> it = map.entrySet().iterator();
|
|
while (it.hasNext()) {
|
|
Map.Entry entry = (Map.Entry) it.next();
|
|
Intrinsics.checkNotNull(entry, "null cannot be cast to non-null type kotlin.collections.MutableMap.MutableEntry<K of kotlin.collections.GroupingKt__GroupingJVMKt.mapValuesInPlace$lambda$4, R of kotlin.collections.GroupingKt__GroupingJVMKt.mapValuesInPlace$lambda$4>");
|
|
TypeIntrinsics.asMutableMapEntry(entry).setValue(f.invoke(entry));
|
|
}
|
|
return TypeIntrinsics.asMutableMap(map);
|
|
}
|
|
}
|