Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
package androidx.collection;
import java.util.Iterator;
import kotlin.jvm.internal.markers.KMutableIterator;
import kotlin.sequences.SequencesKt__SequenceBuilderKt;
/* JADX INFO: Add missing generic type declarations: [E] */
/* loaded from: classes.dex */
public final class MutableScatterSet$MutableSetWrapper$iterator$1<E> implements Iterator<E>, KMutableIterator {
private int current = -1;
private final Iterator<E> iterator;
final /* synthetic */ MutableScatterSet<E> this$0;
public final int getCurrent() {
return this.current;
}
public final Iterator<E> getIterator() {
return this.iterator;
}
public final void setCurrent(int i) {
this.current = i;
}
public MutableScatterSet$MutableSetWrapper$iterator$1(MutableScatterSet<E> mutableScatterSet) {
Iterator<E> it;
this.this$0 = mutableScatterSet;
it = SequencesKt__SequenceBuilderKt.iterator(new MutableScatterSet$MutableSetWrapper$iterator$1$iterator$1(mutableScatterSet, this, null));
this.iterator = it;
}
@Override // java.util.Iterator
public boolean hasNext() {
return this.iterator.hasNext();
}
@Override // java.util.Iterator
public E next() {
return this.iterator.next();
}
@Override // java.util.Iterator
public void remove() {
int i = this.current;
if (i != -1) {
this.this$0.removeElementAt(i);
this.current = -1;
}
}
}