Ds\Deque::toArray
PHP function
Edit on GitHub ✎
(PECL ds >= 1.0.0)
Converts the deque to an Array
Description
Ds\Deque::toArray(): array
Converts the deque to an Array.
Note
Casting to an Array is not supported yet.
Parameters Parameters
Return Values
An Array containing all the values in the same order as the deque.
Examples
Ds\Deque::toArray() example
php
<?php
$deque = new \Ds\Deque([1, 2, 3]);
var_dump($deque->toArray());
?>The above example will output something similar to:
output
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
}