Ds\Deque::isEmpty
Returns whether the deque is empty
Beschreibung
public bool Ds\Deque::isEmpty
( void
)
Parameter-Liste
Diese Funktion hat keine Parameter.
Rückgabewerte
Returns TRUE if the deque is empty, FALSE otherwise.
Beispiele
Beispiel #1 Ds\Deque::isEmpty example
<?php
$a = new \Ds\Deque([1, 2, 3]);
$b = new \Ds\Deque();
var_dump($a->isEmpty());
var_dump($b->isEmpty());
?>
Das oben gezeigte Beispiel erzeugt
eine ähnliche Ausgabe wie: