operator + method

List<E> operator +(
  1. Iterable<E> elements
)

Returns a new list containing all elements of the given elements collection and then all elements of this collection.

Implementation

List<E> operator +(Iterable<E> elements) => append(elements).toList();