Ds\Deque::reversed

(PECL ds >= 1.0.0)

Ds\Deque::reversedReturns a reversed copy

Opis

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

Returns a reversed copy of the deque.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

A reversed copy of the deque.

Informacja:

The current instance is not affected.

Przykłady

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

<?php
$deque 
= new \Ds\Deque(["a""b""c"]);

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

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

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

User Contributed Notes

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