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

scalaz.Each.scala Maven / Gradle / Ivy

package scalaz

////
/**
 *
 */
////
trait Each[F[_]]  { self =>
  ////
  def each[A](fa: F[A])(f: A => Unit)

  // derived functions

  ////
  val eachSyntax = new scalaz.syntax.EachSyntax[F] { def F = Each.this }
}

object Each {
  @inline def apply[F[_]](implicit F: Each[F]): Each[F] = F

  ////

  ////
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy