(PECL quickhash >= Unknown)
QuickHashIntSet::getSize — Returns the number of elements in the set
Esta função não possui parâmetros.
The number of elements in the set.
Exemplo #1 QuickHashIntSet::getSize() example
<?php
$set = new QuickHashIntSet( 8 );
var_dump( $set->add( 2 ) );
var_dump( $set->add( 3 ) );
var_dump( $set->getSize() );
?>
O exemplo acima produzirá algo semelhante a:
bool(true) bool(true) int(2)