Ds\Deque::clear

(PECL ds >= 1.0.0)

Ds\Deque::clearRemoves all values from the deque

Opis

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

Removes all values from the deque.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Nie jest zwracana żadna wartość.

Przykłady

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

<?php
$deque 
= new \Ds\Deque([123]);
print_r($deque);

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

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

Ds\Deque Object
(
    [0] => 1
    [1] => 2
    [2] => 3
)
Ds\Deque Object
(
)
add a note add a note

User Contributed Notes

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