Append method

Enumerable<T> Append (T newElement)

Inserts an element to the end of the enumerable.

Takes the specified element and inserts it at the end of the enumerable.

Implementation

Enumerable<T> Append(T newElement) {
  return AppendEnumerable<T>(this, newElement);
}