1blankz7 / php-sorting
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: 2023-06-02 15:27:46 UTC
README
实现了与 Comparable RFC 兼容的接口定义的通用排序系统。
使用方法
您有两种选择。根据您的使用情况,您可以实现 Cubicl\Sorting\Comparable
接口或使用比较器。
<?php // with a comparable $orderedList = $sortManager->sortComparable($unorderedListOfComparable); // or with a comparator $orderedList = $sortManager->sortWithComparator($comparator, $unorderedList);