Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
package androidx.core.util;
import android.annotation.SuppressLint;
import android.util.Range;
import androidx.annotation.RequiresApi;
import kotlin.ranges.ClosedRange;
@SuppressLint({"ClassVerificationFailure"})
/* loaded from: classes.dex */
public final class RangeKt {
@RequiresApi(21)
public static final <T extends Comparable<? super T>> Range<T> rangeTo(T t, T t2) {
return new Range<>(t, t2);
}
@RequiresApi(21)
public static final <T extends Comparable<? super T>> Range<T> plus(Range<T> range, T t) {
return range.extend((Range<T>) t);
}
@RequiresApi(21)
public static final <T extends Comparable<? super T>> Range<T> plus(Range<T> range, Range<T> range2) {
return range.extend(range2);
}
@RequiresApi(21)
public static final <T extends Comparable<? super T>> Range<T> and(Range<T> range, Range<T> range2) {
return range.intersect(range2);
}
@RequiresApi(21)
public static final <T extends Comparable<? super T>> ClosedRange toClosedRange(final Range<T> range) {
return new ClosedRange() { // from class: androidx.core.util.RangeKt$toClosedRange$1
/* JADX WARN: Incorrect types in method signature: (TT;)Z */
public boolean contains(Comparable comparable) {
return ClosedRange.DefaultImpls.contains(this, comparable);
}
public boolean isEmpty() {
return ClosedRange.DefaultImpls.isEmpty(this);
}
/* JADX WARN: Incorrect return type in method signature: ()TT; */
@Override // kotlin.ranges.ClosedRange
public Comparable getEndInclusive() {
return range.getUpper();
}
/* JADX WARN: Incorrect return type in method signature: ()TT; */
@Override // kotlin.ranges.ClosedRange
public Comparable getStart() {
return range.getLower();
}
};
}
@RequiresApi(21)
public static final <T extends Comparable<? super T>> Range<T> toRange(ClosedRange closedRange) {
return new Range<>(closedRange.getStart(), closedRange.getEndInclusive());
}
}