operator + method

List<double> operator +(
  1. List<double> 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<double> operator +(List<double> other) => plus(other);