All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scroll.internal.util.Many.scala Maven / Gradle / Ivy

The newest version!
package scroll.internal.util

object Many {
  def * : Many = Many()
}

case class Many() extends Ordered[Int] {
  override def compare(that: Int): Int = 1 // Many is larger as any Int

  override def toString: String = "*"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy