Ds\PriorityQueue::__construct
(PECL ds >= 1.0.0)
Ds\PriorityQueue::__construct — Creates a new instance
Description
public function Ds\PriorityQueue::__construct()
Creates a new instance.
Examples
Example #1 Ds\PriorityQueue::__construct() example
<?php
$queue = new \Ds\PriorityQueue();
var_dump($queue);
?>The above example will output something similar to:
object(Ds\PriorityQueue)#1 (0) {
}
+add a note
User Contributed Notes
There are no user contributed notes for this page.