io.github.vigoo.desert.ziosupport.LowerPriorityCodecs.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of desert-zio_2.13 Show documentation
Show all versions of desert-zio_2.13 Show documentation
ZIO API and codecs for desert
The newest version!
package io.github.vigoo.desert.ziosupport
import io.github.vigoo.desert._
import zio.Chunk
trait LowerPriorityCodecs {
implicit def chunkCodec[A: BinaryCodec]: BinaryCodec[Chunk[A]] =
iterableCodec[A, Chunk[A]](BinaryCodec[A], Chunk.iterableFactory)
}