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

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

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

trait Apply[F[_]] extends Functor[F] {
  def product[A, B](fa: F[A], fb: F[B]): F[(A, B)]
}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy