You are here

public function InsertPriorityQueue::classSetUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-stdlib/benchmark/InsertPriorityQueue.php \ZendBench\Stdlib\InsertPriorityQueue::classSetUp()

File

vendor/zendframework/zend-stdlib/benchmark/InsertPriorityQueue.php, line 19

Class

InsertPriorityQueue

Namespace

ZendBench\Stdlib

Code

public function classSetUp() {
  $this->splPriorityQueue = new SplPriorityQueue();
  $this->fastPriorityQueue = new FastPriorityQueue();
  $this->priorityQueue = new PriorityQueue();
}