You are here

public function FastPriorityQueue::isEmpty in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-stdlib/src/FastPriorityQueue.php \Zend\Stdlib\FastPriorityQueue::isEmpty()

Check if the queue is empty

Return value

boolean

File

vendor/zendframework/zend-stdlib/src/FastPriorityQueue.php, line 312

Class

FastPriorityQueue
This is an efficient implementation of an integer priority queue in PHP

Namespace

Zend\Stdlib

Code

public function isEmpty() {
  return empty($this->values);
}