scorex.serialization.BytesSerializable.scala Maven / Gradle / Ivy
The newest version!
package scorex.serialization
import com.google.common.primitives.Shorts
trait BytesSerializable extends Serializable {
def bytes: Array[Byte]
protected def arrayWithSize(b: Array[Byte]): Array[Byte] = Shorts.toByteArray(b.length.toShort) ++ b
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy