prependAll method

Iterable<T> prependAll(
  1. Iterable<T> other
)

Insert all the elements inside other at the beginning of the Iterable.

Implementation

Iterable<T> prependAll(Iterable<T> other) => other.followedBy(this);