LinkedList.push

Pushes an element onto the stack represented by this list. In other words, inserts the element at the front of this list.

<p>This method is equivalent to {@link #addFirst}.

@param e the element to push

class LinkedList(E)
void
push
(
E e
)

Meta