mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
56 lines
2.8 KiB
Java
56 lines
2.8 KiB
Java
package kotlin.sequences;
|
|
|
|
import androidx.constraintlayout.widget.ConstraintLayout;
|
|
import io.sentry.protocol.MetricSummary;
|
|
import java.util.Iterator;
|
|
import kotlin.Metadata;
|
|
import kotlin.UByte;
|
|
import kotlin.UInt;
|
|
import kotlin.ULong;
|
|
import kotlin.UShort;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* compiled from: _USequences.kt */
|
|
@Metadata(d1 = {"\u0000\"\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\u001a\u0019\u0010\u0000\u001a\u00020\u0001*\b\u0012\u0004\u0012\u00020\u00030\u0002H\u0007¢\u0006\u0004\b\u0004\u0010\u0005\u001a\u0019\u0010\u0000\u001a\u00020\u0001*\b\u0012\u0004\u0012\u00020\u00010\u0002H\u0007¢\u0006\u0004\b\u0006\u0010\u0005\u001a\u0019\u0010\u0000\u001a\u00020\u0007*\b\u0012\u0004\u0012\u00020\u00070\u0002H\u0007¢\u0006\u0004\b\b\u0010\t\u001a\u0019\u0010\u0000\u001a\u00020\u0001*\b\u0012\u0004\u0012\u00020\n0\u0002H\u0007¢\u0006\u0004\b\u000b\u0010\u0005¨\u0006\f"}, d2 = {MetricSummary.JsonKeys.SUM, "Lkotlin/UInt;", "Lkotlin/sequences/Sequence;", "Lkotlin/UByte;", "sumOfUByte", "(Lkotlin/sequences/Sequence;)I", "sumOfUInt", "Lkotlin/ULong;", "sumOfULong", "(Lkotlin/sequences/Sequence;)J", "Lkotlin/UShort;", "sumOfUShort", "kotlin-stdlib"}, k = 5, mv = {1, 9, 0}, xi = ConstraintLayout.LayoutParams.Table.LAYOUT_EDITOR_ABSOLUTEX, xs = "kotlin/sequences/USequencesKt")
|
|
/* loaded from: classes3.dex */
|
|
class USequencesKt___USequencesKt {
|
|
public static final int sumOfUInt(Sequence<UInt> sequence) {
|
|
Intrinsics.checkNotNullParameter(sequence, "<this>");
|
|
Iterator<UInt> it = sequence.iterator();
|
|
int i = 0;
|
|
while (it.hasNext()) {
|
|
i = UInt.m5793constructorimpl(i + it.next().getData());
|
|
}
|
|
return i;
|
|
}
|
|
|
|
public static final long sumOfULong(Sequence<ULong> sequence) {
|
|
Intrinsics.checkNotNullParameter(sequence, "<this>");
|
|
Iterator<ULong> it = sequence.iterator();
|
|
long j = 0;
|
|
while (it.hasNext()) {
|
|
j = ULong.m5872constructorimpl(j + it.next().getData());
|
|
}
|
|
return j;
|
|
}
|
|
|
|
public static final int sumOfUByte(Sequence<UByte> sequence) {
|
|
Intrinsics.checkNotNullParameter(sequence, "<this>");
|
|
Iterator<UByte> it = sequence.iterator();
|
|
int i = 0;
|
|
while (it.hasNext()) {
|
|
i = UInt.m5793constructorimpl(i + UInt.m5793constructorimpl(it.next().getData() & 255));
|
|
}
|
|
return i;
|
|
}
|
|
|
|
public static final int sumOfUShort(Sequence<UShort> sequence) {
|
|
Intrinsics.checkNotNullParameter(sequence, "<this>");
|
|
Iterator<UShort> it = sequence.iterator();
|
|
int i = 0;
|
|
while (it.hasNext()) {
|
|
i = UInt.m5793constructorimpl(i + UInt.m5793constructorimpl(it.next().getData() & UShort.MAX_VALUE));
|
|
}
|
|
return i;
|
|
}
|
|
}
|