tofu.higherKind.Embed.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.higherKind
import cats.FlatMap
trait Embed[T[_[_]]] {
def embed[F[_]: FlatMap](ft: F[T[F]]): T[F]
}