operator + method

IList<T> operator +(
  1. Iterable<T> other
)

Returns the concatenation of this list and other. Returns a new list containing the elements of this list followed by the elements of other.

Implementation

IList<T> operator +(Iterable<T> other) => addAll(other);