also same for these? ```object INFINITY : Comparab...
# announcements
h
also same for these?
Copy code
object INFINITY : Comparable<Any> {
    override fun compareTo(other: Any) = 1
}

object NEGATIVE_INFINITY : Comparable<Any> {
    override fun compareTo(other: Any) = -1
}