ArrayList.remove

Removes the first occurrence of the specified element from this list, if it is present. If the list does not contain the element, it is unchanged. More formally, removes the element with the lowest index <tt>i</tt> such that <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt> (if such an element exists). Returns <tt>true</tt> if this list contained the specified element (or equivalently, if this list changed as a result of the call).

@param o element to be removed from this list, if present @return <tt>true</tt> if this list contained the specified element

class ArrayList(E)
override
bool
remove
(
E o
)

Meta