- 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
22 lines
683 B
Java
22 lines
683 B
Java
package kotlin.ranges;
|
|
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public interface ClosedRange {
|
|
Comparable getEndInclusive();
|
|
|
|
Comparable getStart();
|
|
|
|
public static final class DefaultImpls {
|
|
public static boolean contains(ClosedRange closedRange, Comparable value) {
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
return value.compareTo(closedRange.getStart()) >= 0 && value.compareTo(closedRange.getEndInclusive()) <= 0;
|
|
}
|
|
|
|
public static boolean isEmpty(ClosedRange closedRange) {
|
|
return closedRange.getStart().compareTo(closedRange.getEndInclusive()) > 0;
|
|
}
|
|
}
|
|
}
|