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

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

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

trait Applicative[F[_]] extends Apply[F] {
  def pure[A](x: A): F[A]
}

object Applicative {
  def apply[F[_]](implicit a: Applicative[F]): Applicative[F] = a
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy