CanTraverseValues

trait CanTraverseValues[From, A]

Marker for being able to traverse over the values in a collection/tensor

Companion:
object
class Object
trait Matchable
class Any
class OpArray[A]
object OpArrayCC.type
object OpArrayDD.type
object OpArrayFF.type
object OpArrayII.type
object OpArrayLL.type
object OpArraySS.type

Value members

Abstract methods

def isTraversableAgain(from: From): Boolean
def traverse(from: From, fn: ValuesVisitor[A]): fn.type

Traverses all values from the given collection.

Traverses all values from the given collection.

Concrete methods

def foldLeft[B](from: From, b: B)(fn: (B, A) => B): B