QuickHashIntSet::getSize

(PECL quickhash >= Unknown)

QuickHashIntSet::getSize — Returns the number of elements in the set

Описание

publicQuickHashIntSet::getSize ( ) : int

Returns the number of elements in the set.

Список параметров

key

The key of the entry to add.

Возвращаемые значения

The number of elements in the set.

Примеры

Пример #1 QuickHashIntSet::getSize() example

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

Результатом выполнения данного примера будет что-то подобное:

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