|
Ds\Deque::unshiftAdds values to the front of the deque. Beschreibung
public void Ds\Deque::unshift
([ mixed
$values
] )Adds values to the front of the deque, moving all the current values forward to make room for the new values. Parameter-Liste
RückgabewerteEs wird kein Wert zurückgegeben. BeispieleBeispiel #1 Ds\Deque::unshift example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Ds\Deque Object
(
[0] => b
[1] => c
[2] => a
[3] => 1
[4] => 2
[5] => 3
)
|