LinkedList.offer

Adds the specified element as the tail (last element) of this list.

@param e the element to add @return {@code true} (as specified by {@link Queue#offer})

class LinkedList(E)
bool
offer
(
E e
)

Meta