Ds\Sequence::sort() 函数可以对序列进行就地排序。
用法
public abstract void Ds\Sequence::sort([ callable $comparator ] )
Ds\Sequence::sort() 函数可以使用可选的比较器函数就地对序列进行排序。
Ds\Sequence::sort() 函数不返回任何值。
例子1
<?php
$seq = new \Ds\Vector([2, 7, 1, 9, 6, 15, 12, 20]);
$seq->sort();
print_r($seq);
?>
示例2
<?php
$seq = new \Ds\Vector([2, 7, 1, 9, 6, 5, 12, 20]);
$seq->sort(function($x, $y) {
return $y <=> $x;
});
print_r($seq);
?>
相关用法
- PHP Ds Sequence sorted()用法及代码示例
- PHP Ds Sequence slice()用法及代码示例
- PHP Ds Sequence shift()用法及代码示例
- PHP Ds Sequence capacity()用法及代码示例
- PHP Ds Sequence insert()用法及代码示例
- PHP Ds Sequence reduce()用法及代码示例
- PHP Ds Sequence get()用法及代码示例
- PHP Ds Sequence join()用法及代码示例
- PHP Ds Sequence rotate()用法及代码示例
- PHP Ds Sequence pop()用法及代码示例
- PHP Ds Sequence remove()用法及代码示例
- PHP Ds Sequence contains()用法及代码示例
- PHP Ds Sequence filter()用法及代码示例
- PHP Ds Sequence allocate()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds Sequence sort() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。