public function FastPriorityQueue::count in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-stdlib/src/FastPriorityQueue.php \Zend\Stdlib\FastPriorityQueue::count()
Get the total number of elements in the queue
Return value
integer
File
- vendor/
zendframework/ zend-stdlib/ src/ FastPriorityQueue.php, line 153
Class
- FastPriorityQueue
- This is an efficient implementation of an integer priority queue in PHP
Namespace
Zend\StdlibCode
public function count() {
return $this->count;
}