|
QuickHashIntSet::addThis method adds a new entry to the set Beschreibung
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 QuickHashIntSet::CHECK_FOR_DUPES has been passed when the set was created. Parameter-Liste
Rückgabewerte
Beispiele
Beispiel #1 QuickHashIntSet::add example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: without dupe checking bool(false) bool(true) bool(true) bool(true) with dupe checking bool(false) bool(true) bool(true) bool(false) |