Program Base Library Functions
( pblArrayList* arrayList,
void* element )
Removes a single instance of the specified element from this list, if it is present (optional operation).
Documentation
Removes a single instance of the specified element from this list,
if it is present (optional operation).
More formally, removes an element e such that
(o==null ? e==null : o.equals(e)),
if the list contains one or more such elements.
Returns true if the list contained the specified
element (or equivalently, if the list changed as
a result of the call).
- Parameters:
- arrayList - The list to use
element - Element to remove
- Returns:
- int rc != 0: The list contained the specified element.
int rc == 0: The specified element is not present
Alphabetic index
This page was generated with the help of DOC++.