reduceRows abstract method

Vector reduceRows(
  1. Vector combiner(
    1. Vector combine,
    2. Vector vector
    ), {
  2. Vector? initValue,
})

Reduces all the matrix rows to only row, using combiner function

Implementation

Vector reduceRows(Vector Function(Vector combine, Vector vector) combiner,
    {Vector? initValue});