discord-jadx/app/src/main/java/androidx/core/util/RangeKt$toClosedRange$1.java

36 lines
1.0 KiB
Java

package androidx.core.util;
import android.util.Range;
import d0.d0.a;
/* compiled from: Range.kt */
/* loaded from: classes.dex */
public final class RangeKt$toClosedRange$1 implements a<T> {
public final /* synthetic */ Range<T> $this_toClosedRange;
public RangeKt$toClosedRange$1(Range<T> range) {
this.$this_toClosedRange = range;
}
/* JADX WARN: Incorrect types in method signature: (TT;)Z */
@Override // d0.d0.a
public boolean contains(Comparable comparable) {
return a.C0267a.contains(this, comparable);
}
/* JADX WARN: Incorrect return type in method signature: ()TT; */
@Override // d0.d0.a
public Comparable getEndInclusive() {
return this.$this_toClosedRange.getUpper();
}
/* JADX WARN: Incorrect return type in method signature: ()TT; */
@Override // d0.d0.a
public Comparable getStart() {
return this.$this_toClosedRange.getLower();
}
public boolean isEmpty() {
return a.C0267a.isEmpty(this);
}
}