ADD week 5
This commit is contained in:
@ -0,0 +1,90 @@
|
||||
package kotlin.sequences;
|
||||
|
||||
import java.util.Iterator;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.ResultKt;
|
||||
import kotlin.Unit;
|
||||
import kotlin.coroutines.Continuation;
|
||||
import kotlin.coroutines.intrinsics.IntrinsicsKt;
|
||||
import kotlin.coroutines.jvm.internal.DebugMetadata;
|
||||
import kotlin.coroutines.jvm.internal.RestrictedSuspendLambda;
|
||||
import kotlin.jvm.functions.Function2;
|
||||
|
||||
/* JADX INFO: Add missing generic type declarations: [S] */
|
||||
/* compiled from: _Sequences.kt */
|
||||
@Metadata(d1 = {"\u0000\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0000\u0010\u0004\u001a\u00020\u0003\"\u0004\b\u0000\u0010\u0000\"\b\b\u0001\u0010\u0001*\u00028\u0000*\b\u0012\u0004\u0012\u00028\u00000\u0002H\u008a@"}, d2 = {"S", "T", "Lkotlin/sequences/SequenceScope;", "", "<anonymous>"}, k = 3, mv = {1, 8, 0})
|
||||
@DebugMetadata(c = "kotlin.sequences.SequencesKt___SequencesKt$runningReduce$1", f = "_Sequences.kt", i = {0, 0, 0, 1, 1, 1}, l = {2348, 2351}, m = "invokeSuspend", n = {"$this$sequence", "iterator", "accumulator", "$this$sequence", "iterator", "accumulator"}, s = {"L$0", "L$1", "L$2", "L$0", "L$1", "L$2"})
|
||||
/* loaded from: classes.dex */
|
||||
final class SequencesKt___SequencesKt$runningReduce$1<S> extends RestrictedSuspendLambda implements Function2<SequenceScope<? super S>, Continuation<? super Unit>, Object> {
|
||||
final /* synthetic */ Function2<S, T, S> $operation;
|
||||
final /* synthetic */ Sequence<T> $this_runningReduce;
|
||||
private /* synthetic */ Object L$0;
|
||||
Object L$1;
|
||||
Object L$2;
|
||||
int label;
|
||||
|
||||
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
SequencesKt___SequencesKt$runningReduce$1(Sequence<? extends T> sequence, Function2<? super S, ? super T, ? extends S> function2, Continuation<? super SequencesKt___SequencesKt$runningReduce$1> continuation) {
|
||||
super(2, continuation);
|
||||
this.$this_runningReduce = sequence;
|
||||
this.$operation = function2;
|
||||
}
|
||||
|
||||
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
|
||||
public final Continuation<Unit> create(Object obj, Continuation<?> continuation) {
|
||||
SequencesKt___SequencesKt$runningReduce$1 sequencesKt___SequencesKt$runningReduce$1 = new SequencesKt___SequencesKt$runningReduce$1(this.$this_runningReduce, this.$operation, continuation);
|
||||
sequencesKt___SequencesKt$runningReduce$1.L$0 = obj;
|
||||
return sequencesKt___SequencesKt$runningReduce$1;
|
||||
}
|
||||
|
||||
@Override // kotlin.jvm.functions.Function2
|
||||
public final Object invoke(SequenceScope<? super S> sequenceScope, Continuation<? super Unit> continuation) {
|
||||
return ((SequencesKt___SequencesKt$runningReduce$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;
|
||||
Object next;
|
||||
Iterator it;
|
||||
Object coroutine_suspended = IntrinsicsKt.getCOROUTINE_SUSPENDED();
|
||||
int i = this.label;
|
||||
if (i == 0) {
|
||||
ResultKt.throwOnFailure(obj);
|
||||
sequenceScope = (SequenceScope) this.L$0;
|
||||
Iterator it2 = this.$this_runningReduce.iterator();
|
||||
if (it2.hasNext()) {
|
||||
next = it2.next();
|
||||
this.L$0 = sequenceScope;
|
||||
this.L$1 = it2;
|
||||
this.L$2 = next;
|
||||
this.label = 1;
|
||||
if (sequenceScope.yield(next, this) == coroutine_suspended) {
|
||||
return coroutine_suspended;
|
||||
}
|
||||
it = it2;
|
||||
}
|
||||
return Unit.INSTANCE;
|
||||
}
|
||||
if (i != 1 && i != 2) {
|
||||
throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
|
||||
}
|
||||
next = this.L$2;
|
||||
it = (Iterator) this.L$1;
|
||||
sequenceScope = (SequenceScope) this.L$0;
|
||||
ResultKt.throwOnFailure(obj);
|
||||
while (it.hasNext()) {
|
||||
next = this.$operation.invoke(next, it.next());
|
||||
this.L$0 = sequenceScope;
|
||||
this.L$1 = it;
|
||||
this.L$2 = next;
|
||||
this.label = 2;
|
||||
if (sequenceScope.yield(next, this) == coroutine_suspended) {
|
||||
return coroutine_suspended;
|
||||
}
|
||||
}
|
||||
return Unit.INSTANCE;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user