Add entry
to the beginning of the linked list.
Source
void addFirst(E entry) { _insertBefore(_first, entry, updateFirst: true); _first = entry; }
Add entry
to the beginning of the linked list.
void addFirst(E entry) { _insertBefore(_first, entry, updateFirst: true); _first = entry; }