Package java.util
Class AbstractSequentialList

Public Method remove

Object remove(int index)

Overrides:

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Removes the element at the specified position in this list. Shifts any subsequent elements to the left (subtracts one from their indices).

This implementation first gets a list iterator pointing to the indexed element (with listIterator(index)). Then, it removes the element with ListIterator.remove.