harness.deriving.Derived.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of harness-deriving_3 Show documentation
Show all versions of harness-deriving_3 Show documentation
Miscellaneous libraries/utilities for Scala.
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