tofu.internal.DataEffectComp.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tofu-core_2.13 Show documentation
Show all versions of tofu-core_2.13 Show documentation
Opinionated Set of tool for functional programming in scala
package tofu.internal
trait DataEffectComp[TC[_[_], _]] {
def apply[F[_], A](implicit instance: TC[F, A]): TC[F, A] = instance
}