Files
rr3-apk/decompiled-community/sources/com/google/android/gms/internal/ads/zzfzl.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

62 lines
1.8 KiB
Java

package com.google.android.gms.internal.ads;
import java.util.Comparator;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.SortedSet;
/* loaded from: classes3.dex */
final class zzfzl extends zzfzk implements SortedSet {
public zzfzl(SortedSet sortedSet, zzfuo zzfuoVar) {
super(sortedSet, zzfuoVar);
}
@Override // java.util.SortedSet
public final Comparator comparator() {
return ((SortedSet) this.zza).comparator();
}
@Override // java.util.SortedSet
public final Object first() {
Iterator it = this.zza.iterator();
it.getClass();
zzfuo zzfuoVar = this.zzb;
zzfuoVar.getClass();
while (it.hasNext()) {
Object next = it.next();
if (zzfuoVar.zza(next)) {
return next;
}
}
throw new NoSuchElementException();
}
@Override // java.util.SortedSet
public final SortedSet headSet(Object obj) {
return new zzfzl(((SortedSet) this.zza).headSet(obj), this.zzb);
}
@Override // java.util.SortedSet
public final Object last() {
SortedSet sortedSet = (SortedSet) this.zza;
while (true) {
zzfuo zzfuoVar = this.zzb;
Object last = sortedSet.last();
if (zzfuoVar.zza(last)) {
return last;
}
sortedSet = sortedSet.headSet(last);
}
}
@Override // java.util.SortedSet
public final SortedSet subSet(Object obj, Object obj2) {
return new zzfzl(((SortedSet) this.zza).subSet(obj, obj2), this.zzb);
}
@Override // java.util.SortedSet
public final SortedSet tailSet(Object obj) {
return new zzfzl(((SortedSet) this.zza).tailSet(obj), this.zzb);
}
}