Prepend method

Enumerable<T> Prepend (T newElement)

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> Prepend(T newElement) {
  return PrependEnumerable<T>(this, newElement);
}