A função Ds \ Set :: capacity () pode retornar a capacidade atual.
Sintaxe
public int Ds\Set::capacity( void )
A função Ds \ Set :: capacity () não tem parâmetros.
Exemplo 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());
?>
Exemplo 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());
?>