Ds\PriorityQueue::__construct

(PECL ds >= 1.0.0)

Ds\PriorityQueue::__constructCreates a new instance

Opis

public Ds\PriorityQueue::__construct ( void )

Creates a new instance.

Przykłady

Przykład #1 Ds\PriorityQueue::__construct() example

<?php
$queue 
= new \Ds\PriorityQueue();
var_dump($queue);
?>

Powyższy przykład wyświetli coś podobnego do:

object(Ds\PriorityQueue)#1 (0) {
}
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top