cubicl / php-sorting
PHP的排序库
2.0.0
2023-06-02 15:26 UTC
Requires (Dev)
- phpspec/prophecy-phpunit: ^2.0.2
- phpstan/phpstan: ^1.10.15
- phpunit/phpunit: ^9.6.8
This package is auto-updated.
Last update: 2024-08-31 00:35:37 UTC
README
实现了与Comparable RFC兼容的接口定义的通用排序系统。
使用方法
您有两种可能的选择。根据您的使用情况,您可以实现Cubicl\Sorting\Comparable
接口或使用比较器。
<?php // with a comparable $orderedList = $sortManager->sortComparable($unorderedListOfComparable); // or with a comparator $orderedList = $sortManager->sortWithComparator($comparator, $unorderedList);