void addFirst(E entry)

Add entry to the beginning of the linked list.

Source

void addFirst(E entry) {
  _insertAfter(this, entry);
}