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