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

io.github.vigoo.desert.ziosupport.custom.package.scala Maven / Gradle / Ivy

The newest version!
package io.github.vigoo.desert.ziosupport

import io.github.vigoo.desert._
import io.github.vigoo.desert.custom.{DeserializationContext, SerializationContext, readBytes, writeBytes}
import zio.Chunk

package object custom {
  final def writeByteChunk[A](chunk: Chunk[Byte])(implicit ctx: SerializationContext): Unit =
    writeBytes(chunk.toArray)

  final def readByteChunk[A](count: Int)(implicit ctx: DeserializationContext): Chunk[Byte] =
    Chunk.fromArray(readBytes(count))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy