void add(E entry)

Add entry to the end of the linked list.

Source

void add(E entry) {
  _insertAfter(_previous, entry);
}