Ds\Vector::reverse
Reverses the vector in-place
Description
public void Ds\Vector::reverse()
Parameters
This function has no parameters.
Return Values
No value is returned.
Examples
Example #1 Ds\Vector::reverse example
<?php
$vector = new \Ds\Vector(["a", "b", "c"]);
$vector->reverse();
print_r($vector);
?>
The above example will output
something similar to:
Ds\Vector Object
(
[0] => c
[1] => b
[2] => a
)