prepend method

Iterable<T> prepend(
  1. T t
)

Insert element t at the beginning of the Iterable.

Implementation

Iterable<T> prepend(T t) => [t, ...this];