📜  laravel 集合分区 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:31.092000             🧑  作者: Mango

代码示例1
$collection = collect([1, 2, 3, 4, 5, 6]);

list($underThree, $aboveThree) = $collection->partition(function ($i) {
    return $i < 3;
});