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

harness.deriving.Derived.scala Maven / Gradle / Ivy

The newest version!
package harness.deriving

final case class Derived[A](derived: A)
object Derived {

  def apply[A](implicit derived: Derived[A]): Derived[A] = derived

  type K0[F[_]] = [a] =>> Derived[F[a]]

  given inst[A](using a: A): Derived[A] = Derived(a)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy