|
QuickHashIntSet::addThis method adds a new entry to the set Description
public bool QuickHashIntSet::add(int
$key )
This method adds a new entry to the set, and returns whether the entry was
added. Entries are by default always added unless
Parameters
Return Values
Examples
Example #1 QuickHashIntSet::add example
The above example will output something similar to: without dupe checking bool(false) bool(true) bool(true) bool(true) with dupe checking bool(false) bool(true) bool(true) bool(false) |