PHP » GoLang |
login |
register |
about
|
GoLang Ds\Deque::rotate
request it (591)
GoLang replacement for PHP's Ds\Deque::rotate
[edit | history]
Ds\Deque::rotate(PECL ds >= 1.0.0) Ds\Deque::rotate — Rotates the deque by a given number of rotations Description
public void Ds\Deque::rotate
( int
$rotations
)
Rotates the deque by a given number of rotations, which is equivalent
to successively calling Parameters
Return ValuesNo value is returned.. The deque of the current instance will be rotated. ExamplesExample #1 Ds\Deque::rotate() example
<?phpThe above example will output something similar to:
(
[0] => b
[1] => c
[2] => d
[3] => a
)
Ds\Deque Object
(
[0] => d
[1] => a
[2] => b
[3] => c
)
|
more
Most requested
|