-
Notifications
You must be signed in to change notification settings - Fork 6
/
CollectionInterface.php
1194 lines (1138 loc) · 41.6 KB
/
CollectionInterface.php
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
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Collection;
use Iterator;
use JsonSerializable;
use Traversable;
/**
* Describes the methods a Collection should implement. A collection is an immutable
* list of elements exposing a number of traversing and extracting method for
* generating other collections.
*/
interface CollectionInterface extends Iterator, JsonSerializable
{
/**
* Applies a callback to the elements in this collection.
*
* ### Example:
*
* ```
* $collection = (new Collection($items))->each(function ($value, $key) {
* echo "Element $key: $value";
* });
* ```
*
* @param callable $callback Callback to run for each element in collection.
* @return $this
*/
public function each(callable $callback);
/**
* Looks through each value in the collection, and returns another collection with
* all the values that pass a truth test. Only the values for which the callback
* returns true will be present in the resulting collection.
*
* Each time the callback is executed it will receive the value of the element
* in the current iteration, the key of the element and this collection as
* arguments, in that order.
*
* ### Example:
*
* Filtering odd numbers in an array, at the end only the value 2 will
* be present in the resulting collection:
*
* ```
* $collection = (new Collection([1, 2, 3]))->filter(function ($value, $key) {
* return $value % 2 === 0;
* });
* ```
*
* @param callable|null $callback the method that will receive each of the elements and
* returns true whether or not they should be in the resulting collection.
* If left null, a callback that filters out falsey values will be used.
* @return self
*/
public function filter(?callable $callback = null): CollectionInterface;
/**
* Looks through each value in the collection, and returns another collection with
* all the values that do not pass a truth test. This is the opposite of `filter`.
*
* Each time the callback is executed it will receive the value of the element
* in the current iteration, the key of the element and this collection as
* arguments, in that order.
*
* ### Example:
*
* Filtering even numbers in an array, at the end only values 1 and 3 will
* be present in the resulting collection:
*
* ```
* $collection = (new Collection([1, 2, 3]))->reject(function ($value, $key) {
* return $value % 2 === 0;
* });
* ```
*
* @param callable $callback the method that will receive each of the elements and
* returns true whether or not they should be out of the resulting collection.
* @return self
*/
public function reject(callable $callback): CollectionInterface;
/**
* Returns true if all values in this collection pass the truth test provided
* in the callback.
*
* Each time the callback is executed it will receive the value of the element
* in the current iteration and the key of the element as arguments, in that
* order.
*
* ### Example:
*
* ```
* $overTwentyOne = (new Collection([24, 45, 60, 15]))->every(function ($value, $key) {
* return $value > 21;
* });
* ```
*
* Empty collections always return true because it is a vacuous truth.
*
* @param callable $callback a callback function
* @return bool true if for all elements in this collection the provided
* callback returns true, false otherwise.
*/
public function every(callable $callback): bool;
/**
* Returns true if any of the values in this collection pass the truth test
* provided in the callback.
*
* Each time the callback is executed it will receive the value of the element
* in the current iteration and the key of the element as arguments, in that
* order.
*
* ### Example:
*
* ```
* $hasYoungPeople = (new Collection([24, 45, 15]))->every(function ($value, $key) {
* return $value < 21;
* });
* ```
*
* @param callable $callback a callback function
* @return bool true if the provided callback returns true for any element in this
* collection, false otherwise
*/
public function some(callable $callback): bool;
/**
* Returns true if $value is present in this collection. Comparisons are made
* both by value and type.
*
* @param mixed $value The value to check for
* @return bool true if $value is present in this collection
*/
public function contains($value): bool;
/**
* Returns another collection after modifying each of the values in this one using
* the provided callable.
*
* Each time the callback is executed it will receive the value of the element
* in the current iteration, the key of the element and this collection as
* arguments, in that order.
*
* ### Example:
*
* Getting a collection of booleans where true indicates if a person is female:
*
* ```
* $collection = (new Collection($people))->map(function ($person, $key) {
* return $person->gender === 'female';
* });
* ```
*
* @param callable $callback the method that will receive each of the elements and
* returns the new value for the key that is being iterated
* @return self
*/
public function map(callable $callback): CollectionInterface;
/**
* Folds the values in this collection to a single value, as the result of
* applying the callback function to all elements. $zero is the initial state
* of the reduction, and each successive step of it should be returned
* by the callback function.
* If $zero is omitted the first value of the collection will be used in its place
* and reduction will start from the second item.
*
* @param callable $callback The callback function to be called
* @param mixed $initial The state of reduction
* @return mixed
*/
public function reduce(callable $callback, $initial = null);
/**
* Returns a new collection containing the column or property value found in each
* of the elements.
*
* The matcher can be a string with a property name to extract or a dot separated
* path of properties that should be followed to get the last one in the path.
*
* If a column or property could not be found for a particular element in the
* collection, that position is filled with null.
*
* ### Example:
*
* Extract the user name for all comments in the array:
*
* ```
* $items = [
* ['comment' => ['body' => 'cool', 'user' => ['name' => 'Mark']],
* ['comment' => ['body' => 'very cool', 'user' => ['name' => 'Renan']]
* ];
* $extracted = (new Collection($items))->extract('comment.user.name');
*
* // Result will look like this when converted to array
* ['Mark', 'Renan']
* ```
*
* It is also possible to extract a flattened collection out of nested properties
*
* ```
* $items = [
* ['comment' => ['votes' => [['value' => 1], ['value' => 2], ['value' => 3]]],
* ['comment' => ['votes' => [['value' => 4]]
* ];
* $extracted = (new Collection($items))->extract('comment.votes.{*}.value');
*
* // Result will contain
* [1, 2, 3, 4]
* ```
*
* @param string|callable $path A dot separated path of column to follow
* so that the final one can be returned or a callable that will take care
* of doing that.
* @return self
*/
public function extract($path): CollectionInterface;
/**
* Returns the top element in this collection after being sorted by a property.
* Check the sortBy method for information on the callback and $sort parameters
*
* ### Examples:
*
* ```
* // For a collection of employees
* $max = $collection->max('age');
* $max = $collection->max('user.salary');
* $max = $collection->max(function ($e) {
* return $e->get('user')->get('salary');
* });
*
* // Display employee name
* echo $max->name;
* ```
*
* @param callable|string $path The column name to use for sorting or callback that returns the value.
* @param int $sort The sort type, one of SORT_STRING
* SORT_NUMERIC or SORT_NATURAL
* @see \Cake\Collection\CollectionInterface::sortBy()
* @return mixed The value of the top element in the collection
*/
public function max($path, int $sort = \SORT_NUMERIC);
/**
* Returns the bottom element in this collection after being sorted by a property.
* Check the sortBy method for information on the callback and $sort parameters
*
* ### Examples:
*
* ```
* // For a collection of employees
* $min = $collection->min('age');
* $min = $collection->min('user.salary');
* $min = $collection->min(function ($e) {
* return $e->get('user')->get('salary');
* });
*
* // Display employee name
* echo $min->name;
* ```
*
* @param callable|string $path The column name to use for sorting or callback that returns the value.
* @param int $sort The sort type, one of SORT_STRING
* SORT_NUMERIC or SORT_NATURAL
* @see \Cake\Collection\CollectionInterface::sortBy()
* @return mixed The value of the bottom element in the collection
*/
public function min($path, int $sort = \SORT_NUMERIC);
/**
* Returns the average of all the values extracted with $path
* or of this collection.
*
* ### Example:
*
* ```
* $items = [
* ['invoice' => ['total' => 100]],
* ['invoice' => ['total' => 200]]
* ];
*
* $total = (new Collection($items))->avg('invoice.total');
*
* // Total: 150
*
* $total = (new Collection([1, 2, 3]))->avg();
* // Total: 2
* ```
*
* The average of an empty set or 0 rows is `null`. Collections with `null`
* values are not considered empty.
*
* @param string|callable|null $path The property name to sum or a function
* If no value is passed, an identity function will be used.
* that will return the value of the property to sum.
* @return float|int|null
*/
public function avg($path = null);
/**
* Returns the median of all the values extracted with $path
* or of this collection.
*
* ### Example:
*
* ```
* $items = [
* ['invoice' => ['total' => 400]],
* ['invoice' => ['total' => 500]]
* ['invoice' => ['total' => 100]]
* ['invoice' => ['total' => 333]]
* ['invoice' => ['total' => 200]]
* ];
*
* $total = (new Collection($items))->median('invoice.total');
*
* // Total: 333
*
* $total = (new Collection([1, 2, 3, 4]))->median();
* // Total: 2.5
* ```
*
* The median of an empty set or 0 rows is `null`. Collections with `null`
* values are not considered empty.
*
* @param string|callable|null $path The property name to sum or a function
* If no value is passed, an identity function will be used.
* that will return the value of the property to sum.
* @return float|int|null
*/
public function median($path = null);
/**
* Returns a sorted iterator out of the elements in this collection,
* ranked in ascending order by the results of running each value through a
* callback. $callback can also be a string representing the column or property
* name.
*
* The callback will receive as its first argument each of the elements in $items,
* the value returned by the callback will be used as the value for sorting such
* element. Please note that the callback function could be called more than once
* per element.
*
* ### Example:
*
* ```
* $items = $collection->sortBy(function ($user) {
* return $user->age;
* });
*
* // alternatively
* $items = $collection->sortBy('age');
*
* // or use a property path
* $items = $collection->sortBy('department.name');
*
* // output all user name order by their age in descending order
* foreach ($items as $user) {
* echo $user->name;
* }
* ```
*
* @param callable|string $path The column name to use for sorting or callback that returns the value.
* @param int $order The sort order, either SORT_DESC or SORT_ASC
* @param int $sort The sort type, one of SORT_STRING
* SORT_NUMERIC or SORT_NATURAL
* @return self
*/
public function sortBy($path, int $order = SORT_DESC, int $sort = \SORT_NUMERIC): CollectionInterface;
/**
* Splits a collection into sets, grouped by the result of running each value
* through the callback. If $callback is a string instead of a callable,
* groups by the property named by $callback on each of the values.
*
* When $callback is a string it should be a property name to extract or
* a dot separated path of properties that should be followed to get the last
* one in the path.
*
* ### Example:
*
* ```
* $items = [
* ['id' => 1, 'name' => 'foo', 'parent_id' => 10],
* ['id' => 2, 'name' => 'bar', 'parent_id' => 11],
* ['id' => 3, 'name' => 'baz', 'parent_id' => 10],
* ];
*
* $group = (new Collection($items))->groupBy('parent_id');
*
* // Or
* $group = (new Collection($items))->groupBy(function ($e) {
* return $e['parent_id'];
* });
*
* // Result will look like this when converted to array
* [
* 10 => [
* ['id' => 1, 'name' => 'foo', 'parent_id' => 10],
* ['id' => 3, 'name' => 'baz', 'parent_id' => 10],
* ],
* 11 => [
* ['id' => 2, 'name' => 'bar', 'parent_id' => 11],
* ]
* ];
* ```
*
* @param callable|string $path The column name to use for grouping or callback that returns the value.
* or a function returning the grouping key out of the provided element
* @return self
*/
public function groupBy($path): CollectionInterface;
/**
* Given a list and a callback function that returns a key for each element
* in the list (or a property name), returns an object with an index of each item.
* Just like groupBy, but for when you know your keys are unique.
*
* When $callback is a string it should be a property name to extract or
* a dot separated path of properties that should be followed to get the last
* one in the path.
*
* ### Example:
*
* ```
* $items = [
* ['id' => 1, 'name' => 'foo'],
* ['id' => 2, 'name' => 'bar'],
* ['id' => 3, 'name' => 'baz'],
* ];
*
* $indexed = (new Collection($items))->indexBy('id');
*
* // Or
* $indexed = (new Collection($items))->indexBy(function ($e) {
* return $e['id'];
* });
*
* // Result will look like this when converted to array
* [
* 1 => ['id' => 1, 'name' => 'foo'],
* 3 => ['id' => 3, 'name' => 'baz'],
* 2 => ['id' => 2, 'name' => 'bar'],
* ];
* ```
*
* @param callable|string $path The column name to use for indexing or callback that returns the value.
* or a function returning the indexing key out of the provided element
* @return self
*/
public function indexBy($path): CollectionInterface;
/**
* Sorts a list into groups and returns a count for the number of elements
* in each group. Similar to groupBy, but instead of returning a list of values,
* returns a count for the number of values in that group.
*
* When $callback is a string it should be a property name to extract or
* a dot separated path of properties that should be followed to get the last
* one in the path.
*
* ### Example:
*
* ```
* $items = [
* ['id' => 1, 'name' => 'foo', 'parent_id' => 10],
* ['id' => 2, 'name' => 'bar', 'parent_id' => 11],
* ['id' => 3, 'name' => 'baz', 'parent_id' => 10],
* ];
*
* $group = (new Collection($items))->countBy('parent_id');
*
* // Or
* $group = (new Collection($items))->countBy(function ($e) {
* return $e['parent_id'];
* });
*
* // Result will look like this when converted to array
* [
* 10 => 2,
* 11 => 1
* ];
* ```
*
* @param callable|string $path The column name to use for indexing or callback that returns the value.
* or a function returning the indexing key out of the provided element
* @return self
*/
public function countBy($path): CollectionInterface;
/**
* Returns the total sum of all the values extracted with $matcher
* or of this collection.
*
* ### Example:
*
* ```
* $items = [
* ['invoice' => ['total' => 100]],
* ['invoice' => ['total' => 200]]
* ];
*
* $total = (new Collection($items))->sumOf('invoice.total');
*
* // Total: 300
*
* $total = (new Collection([1, 2, 3]))->sumOf();
* // Total: 6
* ```
*
* @param string|callable|null $path The property name to sum or a function
* If no value is passed, an identity function will be used.
* that will return the value of the property to sum.
* @return float|int
*/
public function sumOf($path = null);
/**
* Returns a new collection with the elements placed in a random order,
* this function does not preserve the original keys in the collection.
*
* @return self
*/
public function shuffle(): CollectionInterface;
/**
* Returns a new collection with maximum $size random elements
* from this collection
*
* @param int $length the maximum number of elements to randomly
* take from this collection
* @return self
*/
public function sample(int $length = 10): CollectionInterface;
/**
* Returns a new collection with maximum $size elements in the internal
* order this collection was created. If a second parameter is passed, it
* will determine from what position to start taking elements.
*
* @param int $length the maximum number of elements to take from
* this collection
* @param int $offset A positional offset from where to take the elements
* @return self
*/
public function take(int $length = 1, int $offset = 0): CollectionInterface;
/**
* Returns the last N elements of a collection
*
* ### Example:
*
* ```
* $items = [1, 2, 3, 4, 5];
*
* $last = (new Collection($items))->takeLast(3);
*
* // Result will look like this when converted to array
* [3, 4, 5];
* ```
*
* @param int $length The number of elements at the end of the collection
* @return self
*/
public function takeLast(int $length): CollectionInterface;
/**
* Returns a new collection that will skip the specified amount of elements
* at the beginning of the iteration.
*
* @param int $length The number of elements to skip.
* @return self
*/
public function skip(int $length): CollectionInterface;
/**
* Looks through each value in the list, returning a Collection of all the
* values that contain all of the key-value pairs listed in $conditions.
*
* ### Example:
*
* ```
* $items = [
* ['comment' => ['body' => 'cool', 'user' => ['name' => 'Mark']],
* ['comment' => ['body' => 'very cool', 'user' => ['name' => 'Renan']]
* ];
*
* $extracted = (new Collection($items))->match(['user.name' => 'Renan']);
*
* // Result will look like this when converted to array
* [
* ['comment' => ['body' => 'very cool', 'user' => ['name' => 'Renan']]
* ]
* ```
*
* @param array $conditions a key-value list of conditions where
* the key is a property path as accepted by `Collection::extract,
* and the value the condition against with each element will be matched
* @return self
*/
public function match(array $conditions): CollectionInterface;
/**
* Returns the first result matching all of the key-value pairs listed in
* conditions.
*
* @param array $conditions a key-value list of conditions where the key is
* a property path as accepted by `Collection::extract`, and the value the
* condition against with each element will be matched
* @see \Cake\Collection\CollectionInterface::match()
* @return mixed
*/
public function firstMatch(array $conditions);
/**
* Returns the first result in this collection
*
* @return mixed The first value in the collection will be returned.
*/
public function first();
/**
* Returns the last result in this collection
*
* @return mixed The last value in the collection will be returned.
*/
public function last();
/**
* Returns a new collection as the result of concatenating the list of elements
* in this collection with the passed list of elements
*
* @param iterable $items Items list.
* @return self
*/
public function append($items): CollectionInterface;
/**
* Append a single item creating a new collection.
*
* @param mixed $item The item to append.
* @param mixed $key The key to append the item with. If null a key will be generated.
* @return self
*/
public function appendItem($item, $key = null): CollectionInterface;
/**
* Prepend a set of items to a collection creating a new collection
*
* @param mixed $items The items to prepend.
* @return self
*/
public function prepend($items): CollectionInterface;
/**
* Prepend a single item creating a new collection.
*
* @param mixed $item The item to prepend.
* @param mixed $key The key to prepend the item with. If null a key will be generated.
* @return self
*/
public function prependItem($item, $key = null): CollectionInterface;
/**
* Returns a new collection where the values extracted based on a value path
* and then indexed by a key path. Optionally this method can produce parent
* groups based on a group property path.
*
* ### Examples:
*
* ```
* $items = [
* ['id' => 1, 'name' => 'foo', 'parent' => 'a'],
* ['id' => 2, 'name' => 'bar', 'parent' => 'b'],
* ['id' => 3, 'name' => 'baz', 'parent' => 'a'],
* ];
*
* $combined = (new Collection($items))->combine('id', 'name');
*
* // Result will look like this when converted to array
* [
* 1 => 'foo',
* 2 => 'bar',
* 3 => 'baz',
* ];
*
* $combined = (new Collection($items))->combine('id', 'name', 'parent');
*
* // Result will look like this when converted to array
* [
* 'a' => [1 => 'foo', 3 => 'baz'],
* 'b' => [2 => 'bar']
* ];
* ```
*
* @param callable|string $keyPath the column name path to use for indexing
* or a function returning the indexing key out of the provided element
* @param callable|string $valuePath the column name path to use as the array value
* or a function returning the value out of the provided element
* @param callable|string|null $groupPath the column name path to use as the parent
* grouping key or a function returning the key out of the provided element
* @return self
*/
public function combine($keyPath, $valuePath, $groupPath = null): CollectionInterface;
/**
* Returns a new collection where the values are nested in a tree-like structure
* based on an id property path and a parent id property path.
*
* @param callable|string $idPath the column name path to use for determining
* whether an element is parent of another
* @param callable|string $parentPath the column name path to use for determining
* whether an element is child of another
* @param string $nestingKey The key name under which children are nested
* @return self
*/
public function nest($idPath, $parentPath, string $nestingKey = 'children'): CollectionInterface;
/**
* Returns a new collection containing each of the elements found in `$values` as
* a property inside the corresponding elements in this collection. The property
* where the values will be inserted is described by the `$path` parameter.
*
* The $path can be a string with a property name or a dot separated path of
* properties that should be followed to get the last one in the path.
*
* If a column or property could not be found for a particular element in the
* collection as part of the path, the element will be kept unchanged.
*
* ### Example:
*
* Insert ages into a collection containing users:
*
* ```
* $items = [
* ['comment' => ['body' => 'cool', 'user' => ['name' => 'Mark']],
* ['comment' => ['body' => 'awesome', 'user' => ['name' => 'Renan']]
* ];
* $ages = [25, 28];
* $inserted = (new Collection($items))->insert('comment.user.age', $ages);
*
* // Result will look like this when converted to array
* [
* ['comment' => ['body' => 'cool', 'user' => ['name' => 'Mark', 'age' => 25]],
* ['comment' => ['body' => 'awesome', 'user' => ['name' => 'Renan', 'age' => 28]]
* ];
* ```
*
* @param string $path a dot separated string symbolizing the path to follow
* inside the hierarchy of each value so that the value can be inserted
* @param mixed $values The values to be inserted at the specified path,
* values are matched with the elements in this collection by its positional index.
* @return self
*/
public function insert(string $path, $values): CollectionInterface;
/**
* Returns an array representation of the results
*
* @param bool $preserveKeys whether to use the keys returned by this
* collection as the array keys. Keep in mind that it is valid for iterators
* to return the same key for different elements, setting this value to false
* can help getting all items if keys are not important in the result.
* @return array
*/
public function toArray(bool $preserveKeys = true): array;
/**
* Returns an numerically-indexed array representation of the results.
* This is equivalent to calling `toArray(false)`
*
* @return array
*/
public function toList(): array;
/**
* Returns the data that can be converted to JSON. This returns the same data
* as `toArray()` which contains only unique keys.
*
* Part of JsonSerializable interface.
*
* @return array The data to convert to JSON
*/
public function jsonSerialize(): array;
/**
* Iterates once all elements in this collection and executes all stacked
* operations of them, finally it returns a new collection with the result.
* This is useful for converting non-rewindable internal iterators into
* a collection that can be rewound and used multiple times.
*
* A common use case is to re-use the same variable for calculating different
* data. In those cases it may be helpful and more performant to first compile
* a collection and then apply more operations to it.
*
* ### Example:
*
* ```
* $collection->map($mapper)->sortBy('age')->extract('name');
* $compiled = $collection->compile();
* $isJohnHere = $compiled->some($johnMatcher);
* $allButJohn = $compiled->filter($johnMatcher);
* ```
*
* In the above example, had the collection not been compiled before, the
* iterations for `map`, `sortBy` and `extract` would've been executed twice:
* once for getting `$isJohnHere` and once for `$allButJohn`
*
* You can think of this method as a way to create save points for complex
* calculations in a collection.
*
* @param bool $preserveKeys whether to use the keys returned by this
* collection as the array keys. Keep in mind that it is valid for iterators
* to return the same key for different elements, setting this value to false
* can help getting all items if keys are not important in the result.
* @return self
*/
public function compile(bool $preserveKeys = true): CollectionInterface;
/**
* Returns a new collection where any operations chained after it are guaranteed
* to be run lazily. That is, elements will be yieleded one at a time.
*
* A lazy collection can only be iterated once. A second attempt results in an error.
*
* @return self
*/
public function lazy(): CollectionInterface;
/**
* Returns a new collection where the operations performed by this collection.
* No matter how many times the new collection is iterated, those operations will
* only be performed once.
*
* This can also be used to make any non-rewindable iterator rewindable.
*
* @return self
*/
public function buffered(): CollectionInterface;
/**
* Returns a new collection with each of the elements of this collection
* after flattening the tree structure. The tree structure is defined
* by nesting elements under a key with a known name. It is possible
* to specify such name by using the '$nestingKey' parameter.
*
* By default all elements in the tree following a Depth First Search
* will be returned, that is, elements from the top parent to the leaves
* for each branch.
*
* It is possible to return all elements from bottom to top using a Breadth First
* Search approach by passing the '$dir' parameter with 'asc'. That is, it will
* return all elements for the same tree depth first and from bottom to top.
*
* Finally, you can specify to only get a collection with the leaf nodes in the
* tree structure. You do so by passing 'leaves' in the first argument.
*
* The possible values for the first argument are aliases for the following
* constants and it is valid to pass those instead of the alias:
*
* - desc: RecursiveIteratorIterator::SELF_FIRST
* - asc: RecursiveIteratorIterator::CHILD_FIRST
* - leaves: RecursiveIteratorIterator::LEAVES_ONLY
*
* ### Example:
*
* ```
* $collection = new Collection([
* ['id' => 1, 'children' => [['id' => 2, 'children' => [['id' => 3]]]]],
* ['id' => 4, 'children' => [['id' => 5]]]
* ]);
* $flattenedIds = $collection->listNested()->extract('id'); // Yields [1, 2, 3, 4, 5]
* ```
*
* @param string|int $order The order in which to return the elements
* @param string|callable $nestingKey The key name under which children are nested
* or a callable function that will return the children list
* @return self
*/
public function listNested($order = 'desc', $nestingKey = 'children'): CollectionInterface;
/**
* Creates a new collection that when iterated will stop yielding results if
* the provided condition evaluates to true.
*
* This is handy for dealing with infinite iterators or any generator that
* could start returning invalid elements at a certain point. For example,
* when reading lines from a file stream you may want to stop the iteration
* after a certain value is reached.
*
* ### Example:
*
* Get an array of lines in a CSV file until the timestamp column is less than a date
*
* ```
* $lines = (new Collection($fileLines))->stopWhen(function ($value, $key) {
* return (new DateTime($value))->format('Y') < 2012;
* })
* ->toArray();
* ```
*
* Get elements until the first unapproved message is found:
*
* ```
* $comments = (new Collection($comments))->stopWhen(['is_approved' => false]);
* ```
*
* @param callable|array $condition the method that will receive each of the elements and
* returns true when the iteration should be stopped.
* If an array, it will be interpreted as a key-value list of conditions where
* the key is a property path as accepted by `Collection::extract`,
* and the value the condition against with each element will be matched.
* @return self
*/
public function stopWhen($condition): CollectionInterface;
/**
* Creates a new collection where the items are the
* concatenation of the lists of items generated by the transformer function
* applied to each item in the original collection.
*
* The transformer function will receive the value and the key for each of the
* items in the collection, in that order, and it must return an array or a
* Traversable object that can be concatenated to the final result.
*
* If no transformer function is passed, an "identity" function will be used.
* This is useful when each of the elements in the source collection are
* lists of items to be appended one after another.
*
* ### Example:
*
* ```
* $items [[1, 2, 3], [4, 5]];
* $unfold = (new Collection($items))->unfold(); // Returns [1, 2, 3, 4, 5]
* ```
*
* Using a transformer
*
* ```
* $items [1, 2, 3];
* $allItems = (new Collection($items))->unfold(function ($page) {
* return $service->fetchPage($page)->toArray();
* });
* ```
*
* @param callable|null $callback A callable function that will receive each of
* the items in the collection and should return an array or Traversable object
* @return self
*/
public function unfold(?callable $callback = null): CollectionInterface;
/**
* Passes this collection through a callable as its first argument.
* This is useful for decorating the full collection with another object.
*
* ### Example:
*
* ```
* $items = [1, 2, 3];
* $decorated = (new Collection($items))->through(function ($collection) {
* return new MyCustomCollection($collection);
* });
* ```
*
* @param callable $callback A callable function that will receive
* this collection as first argument.
* @return self
*/
public function through(callable $callback): CollectionInterface;
/**
* Combines the elements of this collection with each of the elements of the
* passed iterables, using their positional index as a reference.
*
* ### Example:
*
* ```
* $collection = new Collection([1, 2]);
* $collection->zip([3, 4], [5, 6])->toList(); // returns [[1, 3, 5], [2, 4, 6]]
* ```
*
* @param iterable ...$items The collections to zip.