(PECL ds >= 1.0.0)
Ds\Map::capacity — Returns the current capacity.
Returns the current capacity.
Esta função não possui parâmetros.
The current capacity.
Exemplo #1 Ds\Map::capacity() example
<?php
$map = new \Ds\Map();
var_dump($map->capacity());
?>
O exemplo acima irá imprimir algo similar à:
int(16)