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