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

izumi.fundamentals.platform.language.literals.LiteralBoolean.scala Maven / Gradle / Ivy

package izumi.fundamentals.platform.language.literals

object LiteralBoolean {
  type Of[T <: Boolean] = T
  type Get[T <: LiteralBoolean] = T

  def apply(b: Boolean): b.type = b

  @inline final def True: true = true
  @inline final def False: false = false
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy