addAll method

L<T> addAll(
  1. Iterable<T> items
)

Implementation

L<T> addAll(Iterable<T> items) => LAddAll<T>(
      this,
      ((items is IList<T>) ? (items)._l : items),
    );