(PECL ds >= 1.0.0)
Ds\Map::capacity — Returns the current capacity
Bu işlevin bağımsız değişkeni yoktur.
The current capacity.
Örnek 1 Ds\Map::capacity() example
<?php
$map = new \Ds\Map();
var_dump($map->capacity());
?>
Yukarıdaki örnek şuna benzer bir çıktı üretir:
int(16)