operator - method

List<num> operator -(
  1. Iterable<num> other
)

Subtracts elements of this instance with other instance elements.

Implementation

List<num> operator -(Iterable<num> other) => merge(other, (a, b) => a - b);