![JAR search and dependency download from the Maven repository](/logo.png)
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