operator ~/ method

List<int> operator ~/(
  1. List<num> other
)

Divides (as int) elements of this instance with other instance elements.

Implementation

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