QuickHashIntSet::getSize

(PECL quickhash >= Unknown)

QuickHashIntSet::getSizeReturns the number of elements in the set

Opis

publicQuickHashIntSet::getSize ( void ) : int

Returns the number of elements in the set.

Parametry

key

The key of the entry to add.

Zwracane wartości

The number of elements in the set.

Przykłady

Przykład #1 QuickHashIntSet::getSize() example

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

Powyższy przykład wyświetli coś podobnego do:

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

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top