Ds\PriorityQueue::clear

(PECL ds >= 1.0.0)

Ds\PriorityQueue::clearRemoves all values

Opis

public Ds\PriorityQueue::clear ( void ) : void

Removes all values from the queue.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Nie jest zwracana żadna wartość.

Przykłady

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

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

$queue->push("a",  5);
$queue->push("b"15);
$queue->push("c"10);

$queue->clear();
print_r($queue);
?>

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

Ds\PriorityQueue Object
(
)
add a note add a note

User Contributed Notes

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