Returns a reversed copy
Returns a reversed copy of the deque.
この関数にはパラメータはありません。
A reversed copy of the deque.
注意: The current instance is not affected.
注意:
The current instance is not affected.
例1 Ds\Deque::reversed example
<?php $deque = new \Ds\Deque(["a", "b", "c"]); print_r($deque->reversed()); print_r($deque); ?>
上の例の出力は、 たとえば以下のようになります。
Ds\Deque Object ( [0] => c [1] => b [2] => a ) Ds\Deque Object ( [0] => a [1] => b [2] => c )