operator ~/ method

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

Implementation

List<int> operator ~/(List<num> other) {
  return List.generate(length, (i) => this[i] ~/ other[i]);
}