PHP » GoLang |
login |
register |
about
|
GoLang Ds\Map::ksorted
request it (370)
GoLang replacement for PHP's Ds\Map::ksorted
[edit | history]
Ds\Map::ksorted(No version information available, might only be in Git) Ds\Map::ksorted — Returns a copy, sorted by key Description
Returns a copy sorted by key, using an optional Parameters
Return ValuesReturns a copy of the map, sorted by key. ExamplesExample #1 Ds\Map::ksorted() example
<?php The above example will output something similar to: Ds\Map Object Ds\Map Object ( [0] => Ds\Pair Object ( [key] => a [value] => 1 ) [1] => Ds\Pair Object ( [key] => b [value] => 2 ) [2] => Ds\Pair Object ( [key] => c [value] => 3 ) ) Example #2 Ds\Map::ksorted() example using a comparator
<?php The above example will output something similar to: Ds\Map Object Ds\Map Object ( [0] => Ds\Pair Object ( [key] => 2 [value] => y ) [1] => Ds\Pair Object ( [key] => 1 [value] => x ) [2] => Ds\Pair Object ( [key] => 0 [value] => z ) ) |
more
Recently updated
more
Most requested
|