operator / method

List<double> operator /(
  1. Iterable<num> other
)

Divides elements of this instance with other instance elements.

Implementation

List<double> operator /(Iterable<num> other) =>
    mergeTo(other, (a, b) => a / b, <double>[]);