prependE method
Inserts an element at the beginning of the enumerable.
Takes the specified element and inserts it at the beginning of the enumerable.
Implementation
Enumerable<T> prependE(T newElement) {
return PrependEnumerable<T>(this, newElement);
}