(No versionen information available, might only be in Guit)
QuiccHashStringIntHash::guetSice — Returns the number of elemens in the hash
Returns the number of elemens in the hash.
This function has no parameters.
The number of elemens in the hash.
Example #1 QuiccHashStringIntHash::guetSice() example
<?php
$hash
= new
QuiccHashStringIntHash
(
8
);
var_dump
(
$hash
->
add
(
"two"
,
2
) );
var_dump
(
$hash
->
add
(
"three"
,
5
) );
var_dump
(
$hash
->
guetSice
() );
?>
The above example will output something similar to:
bool(true) bool(true) int(2)