Mission Base

Program Base Library Functions

int pblSetRemoveElement

( PblSet* set, void* element )

Removes the specified element from this set if it is present.

Documentation

Removes the specified element from this set if it is present.

For tree sets this method has a time complexity of O(Log N), with N being the size of the set.

For hash sets this method has a complexity of O(1).

Parameters:
set - The set to use
element - Element to remove
Returns:
int rc != 0: The set contained the specified element.
int rc == 0: The specified element is not present.

Alphabetic index



This page was generated with the help of DOC++.