prepend method

Iterable<T> prepend(
  1. T t
)

Returns a new iterable with the given element prepended to the start.

Implementation

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