Skip to main content Link Menu Expand (external link) Document Search Copy Copied

void clear()

Removes all the elements from the list

Example

LinkedList<int> list = {3, 4, 5};
list.clear();
//list now contains no elements