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

scala.reflect.internal.util.ThreeValues.scala Maven / Gradle / Ivy

There is a newer version: 2.11.2
Show newest version
package scala.reflect.internal.util

/** A simple three value type for booleans with an unknown value */
object ThreeValues {

  type ThreeValue = Byte

  final val YES = 1
  final val NO = -1
  final val UNKNOWN = 0

  @inline def fromBoolean(b: Boolean): ThreeValue = if (b) YES else NO
  @inline def toBoolean(x: ThreeValue): Boolean = x == YES
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy