com.jejking.rprng.rng.EightByteString.scala Maven / Gradle / Ivy
The newest version!
package com.jejking.rprng.rng
import akka.util.ByteString
/**
* Wraps a byte string that is ensured to be of length 8.
*/
case class EightByteString(byteString: ByteString) {
require(byteString.length == 8)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy