public function InsertPriorityQueue::classSetUp in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/zendframework/zend-stdlib/benchmark/InsertPriorityQueue.php \ZendBench\Stdlib\InsertPriorityQueue::classSetUp()
File
- vendor/
zendframework/ zend-stdlib/ benchmark/ InsertPriorityQueue.php, line 19
Class
Namespace
ZendBench\StdlibCode
public function classSetUp() {
$this->splPriorityQueue = new SplPriorityQueue();
$this->fastPriorityQueue = new FastPriorityQueue();
$this->priorityQueue = new PriorityQueue();
}