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

net.petitviolet.operator.FunctionOps.scala Maven / Gradle / Ivy

The newest version!
package net.petitviolet.operator

final class FunctionOps[A, B](private val f: A => B) extends AnyVal {
  def each(as: Iterable[A]): Iterable[B] = as map f
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy