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