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

scorex.utils.Booleans.scala Maven / Gradle / Ivy

There is a newer version: 1.2.0-RC3
Show newest version
package scorex.utils

object Booleans {

  def toByteArray(v: Boolean): Array[Byte] = if (v) Array(1: Byte) else Array(0: Byte)

  def fromByteArray(b: Array[Byte]): Boolean = if (b sameElements Array(1: Byte)) true else false

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy