|
Ds\Vector::rotateRotates the vector by a given number of rotations Description
public void Ds\Vector::rotate(int
$rotations)
Rotates the vector by a given number of rotations, which is equivalent
to successively calling Parameters
Return ValuesNo value is returned.. The vector of the current instance will be rotated. ExamplesExample #1 Ds\Vector::rotate example The above example will output something similar to:
(
[0] => b
[1] => c
[2] => d
[3] => a
)
Ds\Vector Object
(
[0] => d
[1] => a
[2] => b
[3] => c
)
|