plus method

Iterable<T> plus(
  1. Iterable<T> l
)

Append l to this Iterable.

Implementation

Iterable<T> plus(Iterable<T> l) => [...this, ...l];