PHP » GoLang |
login |
register |
about
|
GoLang Ds\Sequence::rotate
request it (303)
GoLang replacement for PHP's Ds\Sequence::rotate
[edit | history]
Ds\Sequence::rotate(PECL ds >= 1.0.0) Ds\Sequence::rotate — Rotates the sequence by a given number of rotations Description
abstract public void Ds\Sequence::rotate
( int
$rotations
)
Rotates the sequence by a given number of rotations, which is equivalent
to successively calling Parameters
Return ValuesNo value is returned.. The sequence of the current instance will be rotated. ExamplesExample #1 Ds\Sequence::rotate() example
<?php 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 ) |
more
Recently updated
more
Most requested
more
Last requests
|