public function PriorityQueue::count in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-stdlib/src/PriorityQueue.php \Zend\Stdlib\PriorityQueue::count()
How many items are in the queue?
Return value
int
1 call to PriorityQueue::count()
- PriorityQueue::isEmpty in vendor/
zendframework/ zend-stdlib/ src/ PriorityQueue.php - Is the queue empty?
File
- vendor/
zendframework/ zend-stdlib/ src/ PriorityQueue.php, line 128
Class
- PriorityQueue
- Re-usable, serializable priority queue implementation
Namespace
Zend\StdlibCode
public function count() {
return count($this->items);
}