appendE method

Enumerable<T> appendE (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> appendE(T newElement) {
  return AppendEnumerable<T>(this, newElement);
}