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