(PECL ds >= 1.0.0)
Ds\Map::capacity — Returns the current capacity
Cette fonction ne contient aucun paramètre.
The current capacity.
Exemple #1 Ds\Map::capacity() example
<?php
$map = new \Ds\Map();
var_dump($map->capacity());
?>
Résultat de l'exemple ci-dessus est similaire à :
int(16)