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

axle.EnrichedByteArray.scala Maven / Gradle / Ivy

There is a newer version: 0.6.6
Show newest version
package axle

case class EnrichedByteArray(barr: Array[Byte]) {

  def ⊕(other: Array[Byte]): Array[Byte] = barr.zip(other).map(lr => (lr._1 ^ lr._2).toByte).toArray
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy