prepend method
Returns a new iterable with the given element prepended to the start.
Implementation
Iterable<T> prepend(T t) => [t].followedBy(this);
Returns a new iterable with the given element prepended to the start.
Iterable<T> prepend(T t) => [t].followedBy(this);