87 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| 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: [R] */
 | |
| /* 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\"\u0004\b\u0001\u0010\u0001*\b\u0012\u0004\u0012\u00028\u00010\u0002H\u008a@"}, d2 = {"T", "R", "Lkotlin/sequences/SequenceScope;", "", "<anonymous>"}, k = 3, mv = {1, 8, 0})
 | |
| @DebugMetadata(c = "kotlin.sequences.SequencesKt___SequencesKt$zipWithNext$2", f = "_Sequences.kt", i = {0, 0, 0}, l = {2855}, m = "invokeSuspend", n = {"$this$result", "iterator", "next"}, s = {"L$0", "L$1", "L$2"})
 | |
| /* loaded from: classes.dex */
 | |
| final class SequencesKt___SequencesKt$zipWithNext$2<R> extends RestrictedSuspendLambda implements Function2<SequenceScope<? super R>, Continuation<? super Unit>, Object> {
 | |
|     final /* synthetic */ Sequence<T> $this_zipWithNext;
 | |
|     final /* synthetic */ Function2<T, T, R> $transform;
 | |
|     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$zipWithNext$2(Sequence<? extends T> sequence, Function2<? super T, ? super T, ? extends R> function2, Continuation<? super SequencesKt___SequencesKt$zipWithNext$2> continuation) {
 | |
|         super(2, continuation);
 | |
|         this.$this_zipWithNext = sequence;
 | |
|         this.$transform = function2;
 | |
|     }
 | |
| 
 | |
|     @Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
 | |
|     public final Continuation<Unit> create(Object obj, Continuation<?> continuation) {
 | |
|         SequencesKt___SequencesKt$zipWithNext$2 sequencesKt___SequencesKt$zipWithNext$2 = new SequencesKt___SequencesKt$zipWithNext$2(this.$this_zipWithNext, this.$transform, continuation);
 | |
|         sequencesKt___SequencesKt$zipWithNext$2.L$0 = obj;
 | |
|         return sequencesKt___SequencesKt$zipWithNext$2;
 | |
|     }
 | |
| 
 | |
|     @Override // kotlin.jvm.functions.Function2
 | |
|     public final Object invoke(SequenceScope<? super R> sequenceScope, Continuation<? super Unit> continuation) {
 | |
|         return ((SequencesKt___SequencesKt$zipWithNext$2) create(sequenceScope, continuation)).invokeSuspend(Unit.INSTANCE);
 | |
|     }
 | |
| 
 | |
|     @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 sequenceScope2 = (SequenceScope) this.L$0;
 | |
|             Iterator it2 = this.$this_zipWithNext.iterator();
 | |
|             if (!it2.hasNext()) {
 | |
|                 return Unit.INSTANCE;
 | |
|             }
 | |
|             sequenceScope = sequenceScope2;
 | |
|             next = it2.next();
 | |
|             it = it2;
 | |
|         } else {
 | |
|             if (i != 1) {
 | |
|                 throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
 | |
|             }
 | |
|             Object obj2 = this.L$2;
 | |
|             it = (Iterator) this.L$1;
 | |
|             sequenceScope = (SequenceScope) this.L$0;
 | |
|             ResultKt.throwOnFailure(obj);
 | |
|             next = obj2;
 | |
|         }
 | |
|         while (it.hasNext()) {
 | |
|             Object next2 = it.next();
 | |
|             this.L$0 = sequenceScope;
 | |
|             this.L$1 = it;
 | |
|             this.L$2 = next2;
 | |
|             this.label = 1;
 | |
|             if (sequenceScope.yield(this.$transform.invoke(next, next2), this) == coroutine_suspended) {
 | |
|                 return coroutine_suspended;
 | |
|             }
 | |
|             next = next2;
 | |
|         }
 | |
|         return Unit.INSTANCE;
 | |
|     }
 | |
| }
 |