QuickHashIntSet::getSize

(PECL quickhash >= Unknown)

QuickHashIntSet::getSizeReturns the number of elements in the set

Beschreibung

publicQuickHashIntSet::getSize ( void ) : int

Returns the number of elements in the set.

Parameter-Liste

key

The key of the entry to add.

Rückgabewerte

The number of elements in the set.

Beispiele

Beispiel #1 QuickHashIntSet::getSize() example

<?php
$set 
= new QuickHashIntSet);
var_dump$set->add) );
var_dump$set->add) );
var_dump$set->getSize() );
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

bool(true)
bool(true)
int(2)