Ds\Deque::reversed
(PECL ds >= 1.0.0)
Ds\Deque::reversed — Returns a reversed copy
パラメータ
この関数にはパラメータはありません。
戻り値
A reversed copy of the deque.
注意:
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 )
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google