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

cats.Comonad.scala Maven / Gradle / Ivy

package cats

import simulacrum.typeclass

/**
 * Must obey the laws defined in cats.laws.ComonadLaws.
 */
@typeclass trait Comonad[F[_]] extends CoflatMap[F] {
  def extract[A](x: F[A]): A
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy