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

cats.compat.Vector.scala Maven / Gradle / Ivy

The newest version!
package cats.compat

private[cats] object Vector {
  def zipWith[A, B, C](fa: Vector[A], fb: Vector[B])(f: (A, B) => C): Vector[C] =
    (fa, fb).zipped.map(f)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy