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

refined4s.modules.doobie.derivation.DoobieRefinedGet.scala Maven / Gradle / Ivy

package refined4s.modules.doobie.derivation

import cats.Show
import doobie.Get
import refined4s.RefinedBase

/** @author Kevin Lee
  * @since 2023-12-16
  */
trait DoobieRefinedGet[A: Get: Show] {
  self: RefinedBase[A] =>

  given derivedGet: Get[Type] = Get[A].temap(from)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy