operator + method

List<num> operator +(
  1. List<num> other
)

Element-wise sum with other. See plus.

NOTE: List defines operator + as concatenation and an instance member always wins over an extension member, so list1 + list2 will NOT call this operator. Use plus instead.

Implementation

List<num> operator +(List<num> other) => plus(other);