- 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
36 lines
1.1 KiB
Java
36 lines
1.1 KiB
Java
package kotlin.sequences;
|
|
|
|
import java.util.Iterator;
|
|
import kotlin.jvm.functions.Function1;
|
|
import kotlin.jvm.internal.markers.KMappedMarker;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class TransformingSequence$iterator$1 implements Iterator, KMappedMarker {
|
|
public final Iterator iterator;
|
|
public final /* synthetic */ TransformingSequence this$0;
|
|
|
|
@Override // java.util.Iterator
|
|
public void remove() {
|
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
|
}
|
|
|
|
public TransformingSequence$iterator$1(TransformingSequence transformingSequence) {
|
|
Sequence sequence;
|
|
this.this$0 = transformingSequence;
|
|
sequence = transformingSequence.sequence;
|
|
this.iterator = sequence.iterator();
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public Object next() {
|
|
Function1 function1;
|
|
function1 = this.this$0.transformer;
|
|
return function1.invoke(this.iterator.next());
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public boolean hasNext() {
|
|
return this.iterator.hasNext();
|
|
}
|
|
}
|