Skip to content

Commit 5f3897d

Browse files
pandiselvammPandi Selvam
and
Pandi Selvam
authored
Feat: Add Docs for Array Partition (#10227)
* Feat: Add Docs for Array Partition * Final updates * PR comments were resolved --------- Co-authored-by: Pandi Selvam <[email protected]>
1 parent 2251911 commit 5f3897d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

helpers.md

+26
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Laravel includes a variety of global "helper" PHP functions. Many of these funct
6060
[Arr::mapSpread](#method-array-map-spread)
6161
[Arr::mapWithKeys](#method-array-map-with-keys)
6262
[Arr::only](#method-array-only)
63+
[Arr::partition](#method-array-partition)
6364
[Arr::pluck](#method-array-pluck)
6465
[Arr::prepend](#method-array-prepend)
6566
[Arr::prependKeysWith](#method-array-prependkeyswith)
@@ -681,6 +682,31 @@ $slice = Arr::only($array, ['name', 'price']);
681682
// ['name' => 'Desk', 'price' => 100]
682683
```
683684

685+
<a name="method-array-partition"></a>
686+
#### `Arr::partition()` {.collection-method}
687+
688+
The `Arr::partition` method may be combined with PHP array destructuring to separate elements that pass a given truth test from those that do not:
689+
690+
```php
691+
<?php
692+
693+
use Illuminate\Support\Arr;
694+
695+
$numbers = [1, 2, 3, 4, 5, 6];
696+
697+
[$underThree, $equalOrAboveThree] = Arr::partition($numbers, function (int $i) {
698+
return $i < 3;
699+
});
700+
701+
dump($underThree);
702+
703+
// [1, 2]
704+
705+
dump($equalOrAboveThree);
706+
707+
// [3, 4, 5, 6]
708+
```
709+
684710
<a name="method-array-pluck"></a>
685711
#### `Arr::pluck()` {.collection-method}
686712

0 commit comments

Comments
 (0)