PHP » GoLang |
login |
register |
about
|
GoLang Ds\Vector::toArray
request it (635)
GoLang replacement for PHP's Ds\Vector::toArray
[edit | history]
Description
public array Ds\Vector::toArray
( void
)
Converts the vector to an array.
ParametersThis function has no parameters. Return ValuesAn array containing all the values in the same order as the vector. ExamplesExample #1 Ds\Vector::toArray() example
<?phpThe above example will output something similar to:
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
}
|
more
Most requested
more
Last requests
|