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

breeze.linalg.support.CanForeachValues.scala Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package breeze.linalg.support

/**
 * Marker for being able to do a foreach on the values of a collection
 *
 * @author dlwh
 */
trait CanForeachValues[From, +A] {
  /**Maps all key-value pairs from the given collection. */
  def foreach[U](from: From, fn: (A => U)): Unit

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy