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

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

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

trait Functor[F[_]] {
  def map[A, B](fa: F[A])(f: A => B): F[B]
}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy