- 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
25 lines
817 B
Java
25 lines
817 B
Java
package kotlin.sequences;
|
|
|
|
import java.util.Iterator;
|
|
import kotlin.jvm.functions.Function0;
|
|
import kotlin.jvm.functions.Function1;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class GeneratorSequence implements Sequence {
|
|
public final Function0 getInitialValue;
|
|
public final Function1 getNextValue;
|
|
|
|
public GeneratorSequence(Function0 getInitialValue, Function1 getNextValue) {
|
|
Intrinsics.checkNotNullParameter(getInitialValue, "getInitialValue");
|
|
Intrinsics.checkNotNullParameter(getNextValue, "getNextValue");
|
|
this.getInitialValue = getInitialValue;
|
|
this.getNextValue = getNextValue;
|
|
}
|
|
|
|
@Override // kotlin.sequences.Sequence
|
|
public Iterator iterator() {
|
|
return new GeneratorSequence$iterator$1(this);
|
|
}
|
|
}
|