|
Ds\Sequence::rotateRotates the sequence by a given number of rotations 説明
abstract public void Ds\Sequence::rotate(int
$rotations)
Rotates the sequence by a given number of rotations, which is equivalent
to successively calling パラメータ
戻り値値を返しません。. The sequence of the current instance will be rotated. 例例1 Ds\Sequence::rotate example 上の例の出力は、 たとえば以下のようになります。
(
[0] => b
[1] => c
[2] => d
[3] => a
)
Ds\Vector Object
(
[0] => d
[1] => a
[2] => b
[3] => c
)
|