-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnumeratesValues.php
More file actions
1119 lines (983 loc) · 32.1 KB
/
EnumeratesValues.php
File metadata and controls
1119 lines (983 loc) · 32.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* This file is part of Blitz PHP framework.
*
* (c) 2022 Dimitri Sitchet Tomkeu <devcode.dst@gmail.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace BlitzPHP\Traits;
use BackedEnum;
use BlitzPHP\Contracts\Support\Arrayable;
use BlitzPHP\Contracts\Support\Enumerable;
use BlitzPHP\Contracts\Support\Jsonable;
use BlitzPHP\Traits\Mixins\HigherOrderCollectionProxy;
use BlitzPHP\Utilities\Helpers;
use BlitzPHP\Utilities\Iterable\Arr;
use BlitzPHP\Utilities\Iterable\Collection;
use CachingIterator;
use Closure;
use Exception;
use JsonSerializable;
use Kint\Kint;
use Stringable;
use UnexpectedValueException;
use UnitEnum;
/**
* @template TKey of array-key
*
* @template-covariant TValue
*
* @property-read HigherOrderCollectionProxy<TKey, TValue> $average
* @property-read HigherOrderCollectionProxy<TKey, TValue> $avg
* @property-read HigherOrderCollectionProxy<TKey, TValue> $contains
* @property-read HigherOrderCollectionProxy<TKey, TValue> $doesntContain
* @property-read HigherOrderCollectionProxy<TKey, TValue> $each
* @property-read HigherOrderCollectionProxy<TKey, TValue> $every
* @property-read HigherOrderCollectionProxy<TKey, TValue> $filter
* @property-read HigherOrderCollectionProxy<TKey, TValue> $first
* @property-read HigherOrderCollectionProxy<TKey, TValue> $flatMap
* @property-read HigherOrderCollectionProxy<TKey, TValue> $groupBy
* @property-read HigherOrderCollectionProxy<TKey, TValue> $keyBy
* @property-read HigherOrderCollectionProxy<TKey, TValue> $last
* @property-read HigherOrderCollectionProxy<TKey, TValue> $map
* @property-read HigherOrderCollectionProxy<TKey, TValue> $max
* @property-read HigherOrderCollectionProxy<TKey, TValue> $min
* @property-read HigherOrderCollectionProxy<TKey, TValue> $partition
* @property-read HigherOrderCollectionProxy<TKey, TValue> $percentage
* @property-read HigherOrderCollectionProxy<TKey, TValue> $reject
* @property-read HigherOrderCollectionProxy<TKey, TValue> $skipUntil
* @property-read HigherOrderCollectionProxy<TKey, TValue> $skipWhile
* @property-read HigherOrderCollectionProxy<TKey, TValue> $some
* @property-read HigherOrderCollectionProxy<TKey, TValue> $sortBy
* @property-read HigherOrderCollectionProxy<TKey, TValue> $sortByDesc
* @property-read HigherOrderCollectionProxy<TKey, TValue> $sum
* @property-read HigherOrderCollectionProxy<TKey, TValue> $takeUntil
* @property-read HigherOrderCollectionProxy<TKey, TValue> $takeWhile
* @property-read HigherOrderCollectionProxy<TKey, TValue> $unique
* @property-read HigherOrderCollectionProxy<TKey, TValue> $unless
* @property-read HigherOrderCollectionProxy<TKey, TValue> $until
* @property-read HigherOrderCollectionProxy<TKey, TValue> $when
*/
trait EnumeratesValues
{
use Conditionable;
/**
* Indique que la représentation sous forme de chaîne de l'objet doit être échappée lorsque __toString est invoqué.
*/
protected bool $escapeWhenCastingToString = false;
/**
* Les méthodes qui peuvent être proxy.
*
* @var list<string>
*/
protected static array $proxies = [
'average',
'avg',
'contains',
'doesntContain',
'each',
'every',
'filter',
'first',
'flatMap',
'groupBy',
'keyBy',
'last',
'map',
'max',
'min',
'partition',
'percentage',
'reject',
'skipUntil',
'skipWhile',
'some',
'sortBy',
'sortByDesc',
'sum',
'takeUntil',
'takeWhile',
'unique',
'unless',
'until',
'when',
];
/**
* Créez une nouvelle instance de collection si la valeur n'en est pas déjà une.
*
* @template TMakeKey of array-key
* @template TMakeValue
*
* @param Arrayable<TMakeKey, TMakeValue>|iterable<TMakeKey, TMakeValue>|null $items
*
* @return static<TMakeKey, TMakeValue>
*/
public static function make($items = []): static
{
return new static($items);
}
/**
* Enveloppez la valeur donnée dans une collection, le cas échéant.
*
* @template TWrapValue
*
* @param iterable<array-key, TWrapValue>|TWrapValue $value
*
* @return static<array-key, TWrapValue>
*/
public static function wrap($value): static
{
return $value instanceof Enumerable
? new static($value)
: new static(Arr::wrap($value));
}
/**
* Obtenez les éléments sous-jacents de la collection donnée, le cas échéant.
*
* @template TUnwrapKey of array-key
* @template TUnwrapValue
*
* @param array<TUnwrapKey, TUnwrapValue>|static<TUnwrapKey, TUnwrapValue> $value
*
* @return array<TUnwrapKey, TUnwrapValue>
*/
public static function unwrap($value): array
{
return $value instanceof Enumerable ? $value->all() : $value;
}
/**
* Créez une nouvelle instance sans éléments.
*/
public static function empty(): static
{
return new static([]);
}
/**
* Créez une nouvelle instance en appelant le callback un certain nombre de fois.
*
* @template TTimesValue
*
* @param (callable(int): TTimesValue)|null $callback
*
* @return static<int, TTimesValue>
*/
public static function times(int $number, ?callable $callback = null): static
{
if ($number < 1) {
return new static();
}
return static::range(1, $number)
->unless($callback === null)
->map($callback);
}
/**
* Create a new collection by decoding a JSON string.
*
* @return static<TKey, TValue>
*/
public static function fromJson(string $json, int $depth = 512, int $flags = 0): static
{
return new static(json_decode($json, true, $depth, $flags));
}
/**
* Get the average value of a given key.
*
* @param (callable(TValue): float|int)|string|null $callback
*
* @return float|int|null
*/
public function avg($callback = null)
{
$callback = $this->valueRetriever($callback);
$reduced = $this->reduce(static function (&$reduce, $value) use ($callback) {
if (null !== ($resolved = $callback($value))) {
$reduce[0] += $resolved;
$reduce[1]++;
}
return $reduce;
}, [0, 0]);
return $reduced[1] ? $reduced[0] / $reduced[1] : null;
}
/**
* Alias pour la méthode "avg".
*
* @param (callable(TValue): float|int)|string|null $callback
*
* @return float|int|null
*/
public function average($callback = null)
{
return $this->avg($callback);
}
/**
* Alias pour la méthode "contains".
*
* @param (callable(TValue, TKey): bool)|string|TValue $key
*/
public function some($key, mixed $operator = null, mixed $value = null): bool
{
return $this->contains(...func_get_args());
}
/**
* Videz la collection et terminez le script.
*/
public function dd(...$args): never
{
$this->dump(...$args);
exit(1);
}
/**
* Videz la collection.
*/
public function dump(...$args): self
{
Kint::dump($this->all(), ...$args);
return $this;
}
/**
* Exécutez un callback sur chaque élément.
*
* @param callable(TValue, TKey): mixed $callback
*/
public function each(callable $callback): self
{
foreach ($this as $key => $item) {
if ($callback($item, $key) === false) {
break;
}
}
return $this;
}
/**
* Exécutez un rappel sur chaque bloc d'éléments imbriqué.
*/
public function eachSpread(callable $callback): self
{
return $this->each(static function ($chunk, $key) use ($callback) {
$chunk[] = $key;
return $callback(...$chunk);
});
}
/**
* Déterminez si tous les éléments réussissent le test de vérité donné.
*
* @param (callable(TValue, TKey): bool)|string|TValue $key
*/
public function every($key, mixed $operator = null, mixed $value = null): bool
{
if (func_num_args() === 1) {
$callback = $this->valueRetriever($key);
foreach ($this as $k => $v) {
if (! $callback($v, $k)) {
return false;
}
}
return true;
}
return $this->every($this->operatorForWhere(...func_get_args()));
}
/**
* Obtenez le premier élément par la paire clé-valeur donnée.
*
* @return TValue|null
*/
public function firstWhere(callable|string $key, mixed $operator = null, mixed $value = null): mixed
{
return $this->first($this->operatorForWhere(...func_get_args()));
}
/**
* Obtenez la valeur d'une clé unique à partir du premier élément correspondant de la collection.
*
* @template TValueDefault
*
* @param (Closure(): TValueDefault)|TValueDefault $default
*
* @return TValue|TValueDefault
*/
public function value(string $key, mixed $default = null): mixed
{
$value = $this->first(static fn ($target) => Helpers::dataHas($target, $key));
return Helpers::dataGet($value, $key, $default);
}
/**
* Ensure that every item in the collection is of the expected type.
*
* @template TEnsureOfType
*
* @param 'array'|'bool'|'float'|'int'|'null'|'string'|array<array-key, class-string<TEnsureOfType>>|class-string<TEnsureOfType> $type
*
* @return static<TKey, TEnsureOfType>
*
* @throws UnexpectedValueException
*/
public function ensure($type)
{
$allowedTypes = is_array($type) ? $type : [$type];
return $this->each(static function ($item, $index) use ($allowedTypes) {
$itemType = get_debug_type($item);
foreach ($allowedTypes as $allowedType) {
if ($itemType === $allowedType || $item instanceof $allowedType) {
return true;
}
}
throw new UnexpectedValueException(
sprintf("Collection should only include [%s] items, but '%s' found at position %d.", implode(', ', $allowedTypes), $itemType, $index)
);
});
}
/**
* Déterminez si la collection n'est pas vide.
*/
public function isNotEmpty(): bool
{
return ! $this->isEmpty();
}
/**
* Exécutez une carte sur chaque bloc d'éléments imbriqué.
*
* @template TMapSpreadValue
*
* @param callable(mixed...): TMapSpreadValue $callback
*
* @return static<TKey, TMapSpreadValue>
*/
public function mapSpread(callable $callback)
{
return $this->map(static function ($chunk, $key) use ($callback) {
$chunk[] = $key;
return $callback(...$chunk);
});
}
/**
* Exécutez une carte de regroupement sur les éléments.
*
* Le callback doit renvoyer un tableau associatif avec une seule paire clé/valeur.
*
* @template TMapToGroupsKey of array-key
* @template TMapToGroupsValue
*
* @param callable(TValue, TKey): array<TMapToGroupsKey, TMapToGroupsValue> $callback
*
* @return static<TMapToGroupsKey, static<int, TMapToGroupsValue>>
*/
public function mapToGroups(callable $callback)
{
$groups = $this->mapToDictionary($callback);
return $groups->map($this->make(...));
}
/**
* Mappez une collection et aplatissez le résultat d'un seul niveau.
*
* @template TFlatMapKey of array-key
* @template TFlatMapValue
*
* @param callable(TValue, TKey): (array<TFlatMapKey, TFlatMapValue>|Collection<TFlatMapKey, TFlatMapValue>) $callback
*
* @return static<TFlatMapKey, TFlatMapValue>
*/
public function flatMap(callable $callback)
{
return $this->map($callback)->collapse();
}
/**
* Mappez les valeurs dans une nouvelle classe.
*
* @template TMapIntoValue
*
* @param class-string<TMapIntoValue> $class
*
* @return static<TKey, TMapIntoValue>
*/
public function mapInto(string $class)
{
if (is_subclass_of($class, BackedEnum::class)) {
return $this->map(static fn ($value, $key) => $class::from($value));
}
return $this->map(static fn ($value, $key) => new $class($value, $key));
}
/**
* Obtenir la valeur minimale d'une clé donnée.
*
* @param (callable(TValue):mixed)|string|null $callback
*/
public function min($callback = null): mixed
{
$callback = $this->valueRetriever($callback);
return $this->map(static fn ($value) => $callback($value))
->reject(static fn ($value) => null === $value)
->reduce(static fn ($result, $value) => null === $result || $value < $result ? $value : $result);
}
/**
* Obtenir la valeur maximale d'une clé donnée.
*
* @param (callable(TValue):mixed)|string|null $callback
*/
public function max($callback = null): mixed
{
$callback = $this->valueRetriever($callback);
return $this->reject(static fn ($value) => null === $value)->reduce(static function ($result, $item) use ($callback) {
$value = $callback($item);
return null === $result || $value > $result ? $value : $result;
});
}
/**
* "Pagine" la collection en la découpant en une plus petite collection.
*/
public function forPage(int $page, int $perPage): static
{
$offset = max(0, ($page - 1) * $perPage);
return $this->slice($offset, $perPage);
}
/**
* Partitionnez la collection en deux tableaux à l'aide du callback ou de la clé donnés.
*
* @param (callable(TValue, TKey): bool)|string|TValue $key
*
* @return static<int<0, 1>, static<TKey, TValue>>
*/
public function partition($key, mixed $operator = null, mixed $value = null): static
{
$callback = func_num_args() === 1
? $this->valueRetriever($key)
: $this->operatorForWhere(...func_get_args());
[$passed, $failed] = Arr::partition($this->getIterator(), $callback);
return new static([new static($passed), new static($failed)]);
}
/**
* Calculate the percentage of items that pass a given truth test.
*
* @param (callable(TValue, TKey): bool) $callback
*/
public function percentage(callable $callback, int $precision = 2): ?float
{
if ($this->isEmpty()) {
return null;
}
return round(
$this->filter($callback)->count() / $this->count() * 100,
$precision
);
}
/**
* Obtenir la somme des valeurs données.
*
* @template TReturnType
*
* @param (callable(TValue): TReturnType)|string|null $callback
*
* @return ($callback is callable ? TReturnType : mixed)
*/
public function sum($callback = null): mixed
{
$callback = null === $callback
? $this->identity()
: $this->valueRetriever($callback);
return $this->reduce(static fn ($result, $item) => $result + $callback($item), 0);
}
/**
* Appliquez le callback si la collection est vide.
*
* @template TWhenEmptyReturnType
*
* @param (callable($this): TWhenEmptyReturnType) $callback
* @param (callable($this): TWhenEmptyReturnType)|null $default
*
* @return $this|TWhenEmptyReturnType
*/
public function whenEmpty(callable $callback, ?callable $default = null)
{
return $this->when($this->isEmpty(), $callback, $default);
}
/**
* Appliquez le callback si la collection n'est pas vide.
*
* @template TWhenNotEmptyReturnType
*
* @param callable($this): TWhenNotEmptyReturnType $callback
* @param (callable($this): TWhenNotEmptyReturnType)|null $default
*
* @return $this|TWhenNotEmptyReturnType
*/
public function whenNotEmpty(callable $callback, ?callable $default = null)
{
return $this->when($this->isNotEmpty(), $callback, $default);
}
/**
* Appliquez le callback seulement si la collection est vide.
*
* @template TUnlessEmptyReturnType
*
* @param callable($this): TUnlessEmptyReturnType $callback
* @param (callable($this): TUnlessEmptyReturnType)|null $default
*
* @return $this|TUnlessEmptyReturnType
*/
public function unlessEmpty(callable $callback, ?callable $default = null)
{
return $this->whenNotEmpty($callback, $default);
}
/**
* Appliquez le callback seulement si la collection n'est pas vide.
*
* @template TUnlessNotEmptyReturnType
*
* @param callable($this): TUnlessNotEmptyReturnType $callback
* @param (callable($this): TUnlessNotEmptyReturnType)|null $default
*
* @return $this|TUnlessNotEmptyReturnType
*/
public function unlessNotEmpty(callable $callback, ?callable $default = null)
{
return $this->whenEmpty($callback, $default);
}
/**
* Filtrez les éléments par la paire clé-valeur donnée.
*/
public function where(callable|string $key, mixed $operator = null, mixed $value = null): static
{
return $this->filter($this->operatorForWhere(...func_get_args()));
}
/**
* Filtrer les éléments où la valeur de la clé donnée est nulle.
*/
public function whereNull(?string $key = null): static
{
return $this->whereStrict($key, null);
}
/**
* Filtre les éléments où la valeur de la clé donnée n'est pas nulle.
*/
public function whereNotNull(?string $key = null): static
{
return $this->where($key, '!==', null);
}
/**
* Filtrez les éléments en fonction de la paire clé-valeur donnée à l'aide d'une comparaison stricte.
*/
public function whereStrict(string $key, mixed $value): static
{
return $this->where($key, '===', $value);
}
/**
* Filtrez les éléments par la paire clé-valeur donnée.
*
* @param Arrayable|iterable $values
*/
public function whereIn(string $key, $values, bool $strict = false): static
{
$values = $this->getArrayableItems($values);
return $this->filter(static fn ($item) => in_array(Helpers::dataGet($item, $key), $values, $strict));
}
/**
* Filtrez les éléments en fonction de la paire clé-valeur donnée à l'aide d'une comparaison stricte.
*
* @param Arrayable|iterable $values
*/
public function whereInStrict(string $key, $values): static
{
return $this->whereIn($key, $values, true);
}
/**
* Filtrez les éléments de sorte que la valeur de la clé donnée se situe entre les valeurs données.
*
* @param Arrayable|iterable $values
*/
public function whereBetween(string $key, $values): static
{
return $this->where($key, '>=', reset($values))->where($key, '<=', end($values));
}
/**
* Filtrez les éléments de sorte que la valeur de la clé donnée ne soit pas comprise entre les valeurs données.
*
* @param Arrayable|iterable $values
*/
public function whereNotBetween(string $key, $values): static
{
return $this->filter(
static fn ($item) => Helpers::dataGet($item, $key) < reset($values) || Helpers::dataGet($item, $key) > end($values)
);
}
/**
* Filtrez les éléments par la paire clé-valeur donnée.
*
* @param Arrayable|iterable $values
*/
public function whereNotIn(string $key, $values, bool $strict = false): static
{
$values = $this->getArrayableItems($values);
return $this->reject(static fn ($item) => in_array(Helpers::dataGet($item, $key), $values, $strict));
}
/**
* Filtrez les éléments en fonction de la paire clé-valeur donnée à l'aide d'une comparaison stricte.
*
* @param Arrayable|iterable $values
*/
public function whereNotInStrict(string $key, $values): static
{
return $this->whereNotIn($key, $values, true);
}
/**
* Filtrez les éléments, en supprimant tous les éléments qui ne correspondent pas au(x) type(s) donné(s).
*
* @template TWhereInstanceOf
*
* @param array<array-key, class-string<TWhereInstanceOf>>|class-string<TWhereInstanceOf> $type
*
* @return static<TKey, TWhereInstanceOf>
*/
public function whereInstanceOf($type): static
{
return $this->filter(static function ($value) use ($type) {
if (is_array($type)) {
foreach ($type as $classType) {
if ($value instanceof $classType) {
return true;
}
}
return false;
}
return $value instanceof $type;
});
}
/**
* Passez la collection au callback donné et renvoyez le résultat.
*
* template TPipeReturnType
*
* @param callable($this): TPipeReturnType $callback
*
* @return TPipeReturnType
*/
public function pipe(callable $callback): mixed
{
return $callback($this);
}
/**
* Passez la collection dans une nouvelle classe.
*
* @template TPipeIntoValue
*
* @param class-string<TPipeIntoValue> $class
*
* @return TPipeIntoValue
*/
public function pipeInto(string $class): mixed
{
return new $class($this);
}
/**
* Passez la collection à travers une série de canaux appelables et renvoyez le résultat.
*
* @param list<callable> $callbacks
*/
public function pipeThrough(array $callbacks): mixed
{
return Collection::make($callbacks)->reduce(
static fn ($carry, $callback) => $callback($carry),
$this,
);
}
/**
* Réduisez la collection à une seule valeur.
*
* @template TReduceInitial
* @template TReduceReturnType
*
* @param callable(TReduceInitial|TReduceReturnType, TValue, TKey): TReduceReturnType $callback
* @param TReduceInitial $initial
*
* @return TReduceReturnType
*/
public function reduce(callable $callback, mixed $initial = null): mixed
{
$result = $initial;
foreach ($this as $key => $value) {
/** @var TKey $key */
$result = $callback($result, $value, $key);
}
return $result;
}
/**
* Réduisez la collection à plusieurs valeurs agrégées.
*
* @throws UnexpectedValueException
*/
public function reduceSpread(callable $callback, ...$initial): array
{
$result = $initial;
foreach ($this as $key => $value) {
$result = $callback(...array_merge($result, [$value, $key]));
if (! is_array($result)) {
throw new UnexpectedValueException(sprintf(
"%s::reduceSpread s'attend à ce que le réducteur renvoie un tableau, mais a obtenu un '%s' à la place.",
Helpers::classBasename(static::class),
gettype($result)
));
}
}
return $result;
}
/**
* Reduce an associative collection to a single value.
*
* @template TReduceWithKeysInitial
* @template TReduceWithKeysReturnType
*
* @param callable(TReduceWithKeysInitial|TReduceWithKeysReturnType, TValue, TKey): TReduceWithKeysReturnType $callback
* @param TReduceWithKeysInitial $initial
*
* @return TReduceWithKeysReturnType
*/
public function reduceWithKeys(callable $callback, $initial = null)
{
return $this->reduce($callback, $initial);
}
/**
* Créez une collection de tous les éléments qui ne réussissent pas un test de vérité donné.
*
* @param bool|(callable(TValue, TKey): bool)|TValue $callback
*/
public function reject($callback = true): static
{
$useAsCallable = $this->useAsCallable($callback);
return $this->filter(static fn ($value, $key) => $useAsCallable
? ! $callback($value, $key)
: $value !== $callback);
}
/**
* Passez la collection au rappel donné, puis renvoyez-la.
*
* @param callable($this): mixed $callback
*/
public function tap(callable $callback): self
{
$callback($this);
return $this;
}
/**
* Renvoie uniquement les éléments uniques du tableau de collection.
*
* @param (callable(TValue, TKey): mixed)|string|null $key
*/
public function unique($key = null, bool $strict = false): static
{
$callback = $this->valueRetriever($key);
$exists = [];
return $this->reject(static function ($item, $key) use ($callback, $strict, &$exists) {
if (in_array($id = $callback($item, $key), $exists, $strict)) {
return true;
}
$exists[] = $id;
});
}
/**
* Renvoie uniquement les éléments uniques du tableau de collection en utilisant une comparaison stricte.
*
* @param (callable(TValue, TKey): mixed)|string|null $key
*/
public function uniqueStrict($key = null): static
{
return $this->unique($key, true);
}
/**
* Rassemblez les valeurs dans une collection.
*/
public function collect(): Collection
{
return Collection::make($this->all());
}
/**
* Obtenez la collection d'éléments sous la forme d'un tableau simple.
*
* @return array<TKey, mixed>
*/
public function toArray(): array
{
return $this->map(static fn ($value) => $value instanceof Arrayable ? $value->toArray() : $value)->all();
}
/**
* Convertissez l'objet en quelque chose de JSON sérialisable.
*
* @return array<TKey, mixed>
*/
public function jsonSerialize(): array
{
return array_map(static function ($value) {
return match (true) {
$value instanceof JsonSerializable => $value->jsonSerialize(),
$value instanceof Jsonable => json_decode($value->toJson(), true),
$value instanceof Arrayable => $value->toArray(),
default => $value,
};
}, $this->all());
}
/**
* Obtenez la collection d'éléments au format JSON.
*/
public function toJson(int $options = 0): string
{
return json_encode($this->jsonSerialize(), $options);
}
/**
* Get the collection of items as pretty print formatted JSON.
*/
public function toPrettyJson(int $options = 0): string
{
return $this->toJson(JSON_PRETTY_PRINT | $options);
}
/**
* Obtenez une instance de CachingIterator.
*/
public function getCachingIterator(int $flags = CachingIterator::CALL_TOSTRING): CachingIterator
{
return new CachingIterator($this->getIterator(), $flags);
}
/**
* Convertissez la collection en sa représentation sous forme de chaîne.
*/
public function __toString(): string
{
if (! $this->escapeWhenCastingToString) {
return $this->toJson();
}
return match (true) {
function_exists('e') => e($this->toJson()),
function_exists('esc') => esc($this->toJson()),
default => $this->toJson(),
};
}
/**
* Indique que la représentation sous forme de chaîne du modèle doit être échappée lorsque __toString est invoqué.
*/
public function escapeWhenCastingToString(bool $escape = true): self
{
$this->escapeWhenCastingToString = $escape;
return $this;
}
/**
* Ajoutez une méthode à la liste des méthodes proxy.
*/
public static function proxy(string $method): void
{
static::$proxies[] = $method;
}
/**
* Accédez dynamiquement aux proxys de collecte.
*
* @throws Exception
*/
public function __get(string $key): mixed
{
if (! in_array($key, static::$proxies, true)) {
throw new Exception("La propriété [{$key}] n'existe pas sur cette instance de collection.");
}
return new HigherOrderCollectionProxy($this, $key);
}
/**
* Tableau de résultats des éléments de Collection ou Arrayable.
*
* @return array<TKey, TValue>
*/
protected function getArrayableItems(mixed $items): array
{
return null === $items || is_scalar($items) || $items instanceof UnitEnum
? Arr::wrap($items)
: Arr::from($items);