ch.ethz.acl.passera.unsigned.UByte.scala Maven / Gradle / Ivy
The newest version!
package ch.ethz.acl.passera.unsigned
case class UByte(override val byteValue: Byte) extends AnyVal with Serializable with SmallUInt[UByte] {
override def intValue = byteValue & 0xff
}
object UByte {
def MinValue = UByte(0)
def MaxValue = UByte(~0)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy