QuickHashIntSet::getSize

(PECL quickhash >= Unknown)

QuickHashIntSet::getSizeReturns the number of elements in the set

Descrição

publicQuickHashIntSet::getSize(): int

Returns the number of elements in the set.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The number of elements in the set.

Exemplos

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)

add a note add a note

User Contributed Notes

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