PHP » GoLang |
login |
register |
about
|
GoLang Ds\Vector::sorted
request it (316)
GoLang replacement for PHP's Ds\Vector::sorted
[edit | history]
Ds\Vector::sorted(PECL ds >= 1.0.0) Ds\Vector::sorted — Returns a sorted copy Description
Returns a sorted copy, using an optional Parameters
Return ValuesReturns a sorted copy of the vector. ExamplesExample #1 Ds\Vector::sorted() example
<?php The above example will output something similar to: Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 ) Example #2 Ds\Vector::sorted() example using a comparator
<?php The above example will output something similar to: Ds\Vector Object ( [0] => 5 [1] => 4 [2] => 3 [3] => 2 [4] => 1 ) |
more
Recently updated
more
Most requested
more
Last requests
|