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

org.leialearns.logic.utilities.Bit.scala Maven / Gradle / Ivy

The newest version!
package org.leialearns.logic.utilities

trait Bit {
  def asInt: Int
  def asBoolean: Boolean
}
case object ZERO extends Bit {
  def asInt = 0
  def asBoolean = false
}
case object ONE extends Bit {
  def asInt = 1
  def asBoolean = true
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy