Files
rr3-apk/decompiled-community/sources/androidx/core/util/LruCacheKt$lruCache$4.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

38 lines
1.2 KiB
Java

package androidx.core.util;
import android.util.LruCache;
import kotlin.jvm.functions.Function1;
import kotlin.jvm.functions.Function2;
import kotlin.jvm.functions.Function4;
/* JADX INFO: Add missing generic type declarations: [V, K] */
/* loaded from: classes.dex */
public final class LruCacheKt$lruCache$4<K, V> extends LruCache<K, V> {
final /* synthetic */ Function1 $create;
final /* synthetic */ Function4 $onEntryRemoved;
final /* synthetic */ Function2 $sizeOf;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public LruCacheKt$lruCache$4(int i, Function2 function2, Function1 function1, Function4 function4) {
super(i);
this.$sizeOf = function2;
this.$create = function1;
this.$onEntryRemoved = function4;
}
@Override // android.util.LruCache
public int sizeOf(K k, V v) {
return ((Number) this.$sizeOf.invoke(k, v)).intValue();
}
@Override // android.util.LruCache
public V create(K k) {
return (V) this.$create.invoke(k);
}
@Override // android.util.LruCache
public void entryRemoved(boolean z, K k, V v, V v2) {
this.$onEntryRemoved.invoke(Boolean.valueOf(z), k, v, v2);
}
}