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

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

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

trait FlatMap[F[_]] extends Apply[F] {
  def flatMap[A, B](fa: F[A])(f: A => F[B]): F[B]
}

object FlatMap {
  def apply[F[_]](implicit f: FlatMap[F]): FlatMap[F] = f
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy