scala.runtime.RichBoolean.scala Maven / Gradle / Ivy
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2002-2010, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
package scala.runtime
final class RichBoolean(x: Boolean) extends Proxy with Ordered[Boolean] {
// Proxy.self
def self: Any = x
// Ordered[Boolean].compare
def compare (y: Boolean): Int = if (x == y) 0 else if (x) 1 else -1
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy