append method

Iterable<T> append(
  1. T t
)

Returns a new iterable with the given element appended to the end.

Implementation

Iterable<T> append(T t) => followedBy([t]);