fuookami.ospf.kotlin.utils.operator.RangeTo.kt Maven / Gradle / Ivy
package fuookami.ospf.kotlin.utils.operator
interface RangeTo> {
operator fun rangeTo(rhs: Rhs): ClosedRange<@UnsafeVariance Ret>
infix fun until(rhs: Rhs): ClosedRange<@UnsafeVariance Ret>
}