ADD week 5
This commit is contained in:
		| @@ -0,0 +1,76 @@ | ||||
| package kotlin.collections; | ||||
|  | ||||
| import java.util.Iterator; | ||||
| import java.util.List; | ||||
| import kotlin.Metadata; | ||||
| import kotlin.Unit; | ||||
| import kotlin.coroutines.Continuation; | ||||
| import kotlin.coroutines.jvm.internal.DebugMetadata; | ||||
| import kotlin.coroutines.jvm.internal.RestrictedSuspendLambda; | ||||
| import kotlin.jvm.functions.Function2; | ||||
| import kotlin.sequences.SequenceScope; | ||||
|  | ||||
| /* JADX INFO: Add missing generic type declarations: [T] */ | ||||
| /* compiled from: SlidingWindow.kt */ | ||||
| @Metadata(d1 = {"\u0000\u0010\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010 \n\u0002\u0010\u0002\n\u0000\u0010\u0004\u001a\u00020\u0003\"\u0004\b\u0000\u0010\u0000*\u000e\u0012\n\u0012\b\u0012\u0004\u0012\u00028\u00000\u00020\u0001H\u008a@"}, d2 = {"T", "Lkotlin/sequences/SequenceScope;", "", "", "<anonymous>"}, k = 3, mv = {1, 8, 0}) | ||||
| @DebugMetadata(c = "kotlin.collections.SlidingWindowKt$windowedIterator$1", f = "SlidingWindow.kt", i = {0, 0, 0, 2, 2, 3, 3}, l = {34, 40, 49, 55, 58}, m = "invokeSuspend", n = {"$this$iterator", "buffer", "gap", "$this$iterator", "buffer", "$this$iterator", "buffer"}, s = {"L$0", "L$1", "I$0", "L$0", "L$1", "L$0", "L$1"}) | ||||
| /* loaded from: classes.dex */ | ||||
| final class SlidingWindowKt$windowedIterator$1<T> extends RestrictedSuspendLambda implements Function2<SequenceScope<? super List<? extends T>>, Continuation<? super Unit>, Object> { | ||||
|     final /* synthetic */ Iterator<T> $iterator; | ||||
|     final /* synthetic */ boolean $partialWindows; | ||||
|     final /* synthetic */ boolean $reuseBuffer; | ||||
|     final /* synthetic */ int $size; | ||||
|     final /* synthetic */ int $step; | ||||
|     int I$0; | ||||
|     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 */ | ||||
|     SlidingWindowKt$windowedIterator$1(int i, int i2, Iterator<? extends T> it, boolean z, boolean z2, Continuation<? super SlidingWindowKt$windowedIterator$1> continuation) { | ||||
|         super(2, continuation); | ||||
|         this.$size = i; | ||||
|         this.$step = i2; | ||||
|         this.$iterator = it; | ||||
|         this.$reuseBuffer = z; | ||||
|         this.$partialWindows = z2; | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl | ||||
|     public final Continuation<Unit> create(Object obj, Continuation<?> continuation) { | ||||
|         SlidingWindowKt$windowedIterator$1 slidingWindowKt$windowedIterator$1 = new SlidingWindowKt$windowedIterator$1(this.$size, this.$step, this.$iterator, this.$reuseBuffer, this.$partialWindows, continuation); | ||||
|         slidingWindowKt$windowedIterator$1.L$0 = obj; | ||||
|         return slidingWindowKt$windowedIterator$1; | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.jvm.functions.Function2 | ||||
|     public final Object invoke(SequenceScope<? super List<? extends T>> sequenceScope, Continuation<? super Unit> continuation) { | ||||
|         return ((SlidingWindowKt$windowedIterator$1) create(sequenceScope, continuation)).invokeSuspend(Unit.INSTANCE); | ||||
|     } | ||||
|  | ||||
|     /* JADX WARN: Removed duplicated region for block: B:15:0x0147  */ | ||||
|     /* JADX WARN: Removed duplicated region for block: B:22:0x0171  */ | ||||
|     /* JADX WARN: Removed duplicated region for block: B:34:0x00f5  */ | ||||
|     /* JADX WARN: Removed duplicated region for block: B:54:0x013d  */ | ||||
|     /* JADX WARN: Removed duplicated region for block: B:60:0x00b0  */ | ||||
|     /* JADX WARN: Removed duplicated region for block: B:65:0x0084  */ | ||||
|     /* JADX WARN: Removed duplicated region for block: B:88:0x00e5 A[RETURN] */ | ||||
|     /* JADX WARN: Removed duplicated region for block: B:89:0x00b4  */ | ||||
|     /* JADX WARN: Unsupported multi-entry loop pattern (BACK_EDGE: B:19:0x0168 -> B:12:0x016b). Please report as a decompilation issue!!! */ | ||||
|     /* JADX WARN: Unsupported multi-entry loop pattern (BACK_EDGE: B:42:0x0130 -> B:30:0x0133). Please report as a decompilation issue!!! */ | ||||
|     /* JADX WARN: Unsupported multi-entry loop pattern (BACK_EDGE: B:63:0x00a9 -> B:50:0x0058). Please report as a decompilation issue!!! */ | ||||
|     @Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl | ||||
|     /* | ||||
|         Code decompiled incorrectly, please refer to instructions dump. | ||||
|         To view partially-correct add '--show-bad-code' argument | ||||
|     */ | ||||
|     public final java.lang.Object invokeSuspend(java.lang.Object r12) { | ||||
|         /* | ||||
|             Method dump skipped, instructions count: 400 | ||||
|             To view this dump add '--comments-level debug' option | ||||
|         */ | ||||
|         throw new UnsupportedOperationException("Method not decompiled: kotlin.collections.SlidingWindowKt$windowedIterator$1.invokeSuspend(java.lang.Object):java.lang.Object"); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user