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

ciris.api.FunctionK.scala Maven / Gradle / Ivy

There is a newer version: 0.12.1
Show newest version
package ciris.api

trait FunctionK[F[_], G[_]] {
  def apply[A](fa: F[A]): G[A]
}

object FunctionK {
  def apply[F[_], G[_]](implicit fk: FunctionK[F, G]): FunctionK[F, G] = fk
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy