cubicl/php-sorting

2.0.0 2023-06-02 15:26 UTC

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);