PHP - Funzione DS Imposta capacità ()
La funzione Ds \ Set :: capacity () può restituire la capacità corrente.
Sintassi
public int Ds\Set::capacity( void )
La funzione Ds \ Set :: capacity () non ha parametri.
Esempio 1
<?php
$set = new \Ds\Set();
echo("The default size of a set: ");
var_dump($set->capacity());
$set->allocate(100);
echo("The allocated size of a set: ");
var_dump($set->capacity());
?>
Esempio 2
<?php
$set = new \Ds\Set([1, 2, 3, 4, 5, 6, 7]);
echo("The elements in a set: \n");
var_dump($set);
echo("\n The capacity of a set:");
var_dump($set->capacity());
?>