Rabbit-R1/original r1/java/sources/kotlin/sequences/SequencesKt___SequencesKt$runningReduceIndexed$1.java
2024-05-21 17:08:36 -04:00

114 lines
5.4 KiB
Java

package kotlin.sequences;
import androidx.exifinterface.media.ExifInterface;
import java.util.Iterator;
import kotlin.Metadata;
import kotlin.ResultKt;
import kotlin.Unit;
import kotlin.collections.CollectionsKt;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.intrinsics.IntrinsicsKt;
import kotlin.coroutines.jvm.internal.Boxing;
import kotlin.coroutines.jvm.internal.DebugMetadata;
import kotlin.coroutines.jvm.internal.RestrictedSuspendLambda;
import kotlin.jvm.functions.Function2;
import kotlin.jvm.functions.Function3;
/* JADX INFO: Add missing generic type declarations: [S] */
/* compiled from: _Sequences.kt */
@Metadata(d1 = {"\u0000\u000e\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\u0010\u0000\u001a\u00020\u0001\"\u0004\b\u0000\u0010\u0002\"\b\b\u0001\u0010\u0003*\u0002H\u0002*\b\u0012\u0004\u0012\u0002H\u00020\u0004H\u008a@"}, d2 = {"<anonymous>", "", ExifInterface.LATITUDE_SOUTH, ExifInterface.GPS_DIRECTION_TRUE, "Lkotlin/sequences/SequenceScope;"}, k = 3, mv = {1, 9, 0}, xi = 48)
@DebugMetadata(c = "kotlin.sequences.SequencesKt___SequencesKt$runningReduceIndexed$1", f = "_Sequences.kt", i = {0, 0, 0, 1, 1, 1, 1}, l = {2395, 2399}, m = "invokeSuspend", n = {"$this$sequence", "iterator", "accumulator", "$this$sequence", "iterator", "accumulator", "index"}, s = {"L$0", "L$1", "L$2", "L$0", "L$1", "L$2", "I$0"})
/* loaded from: classes3.dex */
final class SequencesKt___SequencesKt$runningReduceIndexed$1<S> extends RestrictedSuspendLambda implements Function2<SequenceScope<? super S>, Continuation<? super Unit>, Object> {
final /* synthetic */ Function3<Integer, S, T, S> $operation;
final /* synthetic */ Sequence<T> $this_runningReduceIndexed;
int I$0;
private /* synthetic */ Object L$0;
Object L$1;
Object L$2;
int label;
/* JADX INFO: Access modifiers changed from: package-private */
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
/* JADX WARN: Multi-variable type inference failed */
public SequencesKt___SequencesKt$runningReduceIndexed$1(Sequence<? extends T> sequence, Function3<? super Integer, ? super S, ? super T, ? extends S> function3, Continuation<? super SequencesKt___SequencesKt$runningReduceIndexed$1> continuation) {
super(2, continuation);
this.$this_runningReduceIndexed = sequence;
this.$operation = function3;
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Continuation<Unit> create(Object obj, Continuation<?> continuation) {
SequencesKt___SequencesKt$runningReduceIndexed$1 sequencesKt___SequencesKt$runningReduceIndexed$1 = new SequencesKt___SequencesKt$runningReduceIndexed$1(this.$this_runningReduceIndexed, this.$operation, continuation);
sequencesKt___SequencesKt$runningReduceIndexed$1.L$0 = obj;
return sequencesKt___SequencesKt$runningReduceIndexed$1;
}
@Override // kotlin.jvm.functions.Function2
public final Object invoke(SequenceScope<? super S> sequenceScope, Continuation<? super Unit> continuation) {
return ((SequencesKt___SequencesKt$runningReduceIndexed$1) create(sequenceScope, continuation)).invokeSuspend(Unit.INSTANCE);
}
/* JADX WARN: Multi-variable type inference failed */
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Object invokeSuspend(Object obj) {
SequenceScope sequenceScope;
Iterator it;
Object next;
Object coroutine_suspended = IntrinsicsKt.getCOROUTINE_SUSPENDED();
int i = this.label;
int i2 = 1;
if (i == 0) {
ResultKt.throwOnFailure(obj);
sequenceScope = (SequenceScope) this.L$0;
it = this.$this_runningReduceIndexed.iterator();
if (it.hasNext()) {
next = it.next();
this.L$0 = sequenceScope;
this.L$1 = it;
this.L$2 = next;
this.label = 1;
if (sequenceScope.yield(next, this) == coroutine_suspended) {
return coroutine_suspended;
}
}
return Unit.INSTANCE;
}
if (i == 1) {
next = this.L$2;
it = (Iterator) this.L$1;
sequenceScope = (SequenceScope) this.L$0;
ResultKt.throwOnFailure(obj);
} else {
if (i != 2) {
throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
}
int i3 = this.I$0;
Object obj2 = this.L$2;
it = (Iterator) this.L$1;
sequenceScope = (SequenceScope) this.L$0;
ResultKt.throwOnFailure(obj);
i2 = i3;
next = obj2;
}
while (it.hasNext()) {
Function3<Integer, S, T, S> function3 = this.$operation;
int i4 = i2 + 1;
if (i2 < 0) {
CollectionsKt.throwIndexOverflow();
}
Object invoke = function3.invoke(Boxing.boxInt(i2), next, it.next());
this.L$0 = sequenceScope;
this.L$1 = it;
this.L$2 = invoke;
this.I$0 = i4;
this.label = 2;
if (sequenceScope.yield(invoke, this) == coroutine_suspended) {
return coroutine_suspended;
}
next = invoke;
i2 = i4;
}
return Unit.INSTANCE;
}
}