addAll method

void addAll(
  1. Iterable<double> values
)

Adds all values from values with unit weight.

Implementation

void addAll(Iterable<double> values) {
  for (final v in values) {
    add(v);
  }
}