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

axle.algebra.Applicative.scala Maven / Gradle / Ivy

The newest version!
package axle.algebra

trait Applicative[F[_]] {

  def pure[F[_]: Applicative, T](x: T): F[T]

  def <*>[F[_]: Applicative, A, B](f: F[A => B]): F[A] => F[B]

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy