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

libretto.cats.Comonad.scala Maven / Gradle / Ivy

The newest version!
package libretto.cats

/** Witnesses that `F` is a comonad in the category `->`. */
trait Comonad[->[_, _], F[_]] extends Functor[->, F] {
  def extract[A]   : F[A] -> A
  def duplicate[A] : F[A] -> F[F[A]]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy