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

sensitive.derivation.Derived.scala Maven / Gradle / Ivy

The newest version!
package sensitive.derivation

case class Derived[A](value: A) extends AnyVal

object Derived extends LowPriorityDerived

sealed trait LowPriorityDerived {
  implicit def mkDerived[A](implicit ev: A): Derived[A] = Derived(ev)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy