|
1
|
|
|
<?php |
|
2
|
|
|
namespace TRex\Collection; |
|
3
|
|
|
|
|
4
|
|
|
trait CollectionComparatorTrait |
|
5
|
|
|
{ |
|
6
|
|
|
/** |
|
7
|
|
|
* merge |
|
8
|
|
|
* reindexing of the keys |
|
9
|
|
|
* |
|
10
|
|
|
* @param mixed $collection |
|
11
|
|
|
* @return self |
|
|
|
|
|
|
12
|
|
|
*/ |
|
13
|
1 |
|
public function merge($collection /*, ...*/) |
|
|
|
|
|
|
14
|
|
|
{ |
|
15
|
1 |
|
return $this->apply('array_merge', $this->prepareCollections(func_get_args())); |
|
16
|
|
|
} |
|
17
|
|
|
|
|
18
|
|
|
/** |
|
19
|
|
|
* merge without reindexing and override value with a priority by the left |
|
20
|
|
|
* |
|
21
|
|
|
* @param mixed $collection |
|
22
|
|
|
* @return self |
|
|
|
|
|
|
23
|
|
|
*/ |
|
24
|
1 |
|
public function mergeA($collection /*, ...*/) |
|
|
|
|
|
|
25
|
|
|
{ |
|
26
|
1 |
|
return $this->apply('array_replace', $this->prepareCollections(func_get_args())); |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* compare the values |
|
31
|
|
|
* no reindexing |
|
32
|
|
|
* |
|
33
|
|
|
* @param mixed $collection |
|
34
|
|
|
* @return self |
|
|
|
|
|
|
35
|
|
|
*/ |
|
36
|
1 |
|
public function diff($collection /*, ...*/) |
|
|
|
|
|
|
37
|
|
|
{ |
|
38
|
1 |
|
return $this->apply('array_diff', $this->prepareCollections(func_get_args())); |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* compare the key/value pairs |
|
43
|
|
|
* no reindexing |
|
44
|
|
|
* |
|
45
|
|
|
* @param mixed $collection |
|
46
|
|
|
* @return self |
|
|
|
|
|
|
47
|
|
|
*/ |
|
48
|
1 |
|
public function diffA($collection /*, ...*/) |
|
|
|
|
|
|
49
|
|
|
{ |
|
50
|
1 |
|
return $this->apply('array_diff_assoc', $this->prepareCollections(func_get_args())); |
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
/** |
|
54
|
|
|
* compare only the keys |
|
55
|
|
|
* no reindexing |
|
56
|
|
|
* |
|
57
|
|
|
* @param mixed $collection |
|
58
|
|
|
* @return self |
|
|
|
|
|
|
59
|
|
|
*/ |
|
60
|
1 |
|
public function diffK($collection /*, ...*/) |
|
|
|
|
|
|
61
|
|
|
{ |
|
62
|
1 |
|
return $this->apply('array_diff_key', $this->prepareCollections(func_get_args())); |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
|
|
/** |
|
66
|
|
|
* |
|
67
|
|
|
* |
|
68
|
|
|
* @param mixed $collection |
|
69
|
|
|
* @return self |
|
|
|
|
|
|
70
|
|
|
*/ |
|
71
|
1 |
|
public function intersect($collection /*, ...*/) |
|
|
|
|
|
|
72
|
|
|
{ |
|
73
|
1 |
|
return $this->apply('array_intersect', $this->prepareCollections(func_get_args())); |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
/** |
|
77
|
|
|
* |
|
78
|
|
|
* |
|
79
|
|
|
* @param mixed $collection |
|
80
|
|
|
* @return self |
|
|
|
|
|
|
81
|
|
|
*/ |
|
82
|
1 |
|
public function intersectA($collection /*, ...*/) |
|
|
|
|
|
|
83
|
|
|
{ |
|
84
|
1 |
|
return $this->apply('array_intersect_assoc', $this->prepareCollections(func_get_args())); |
|
85
|
|
|
} |
|
86
|
|
|
|
|
87
|
|
|
/** |
|
88
|
|
|
* |
|
89
|
|
|
* |
|
90
|
|
|
* @param mixed $collection |
|
91
|
|
|
* @return self |
|
|
|
|
|
|
92
|
|
|
*/ |
|
93
|
1 |
|
public function intersectK($collection /*, ...*/) |
|
|
|
|
|
|
94
|
|
|
{ |
|
95
|
1 |
|
return $this->apply('array_intersect_key', $this->prepareCollections(func_get_args())); |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
|
|
/** |
|
99
|
|
|
* Calls a php native function with $collectionList as args. |
|
100
|
|
|
* Returns a new instance of Collection as result. |
|
101
|
|
|
* |
|
102
|
|
|
* @param string $functionName |
|
103
|
|
|
* @param array $collectionList |
|
104
|
|
|
* @return self |
|
|
|
|
|
|
105
|
|
|
*/ |
|
106
|
8 |
|
private function apply($functionName, array $collectionList) |
|
107
|
|
|
{ |
|
108
|
8 |
|
return new $this(call_user_func_array($functionName, $this->parseCollectionsListToArray($collectionList))); |
|
109
|
|
|
} |
|
110
|
|
|
|
|
111
|
|
|
/** |
|
112
|
|
|
* Transforms a list of mixed in an simple array. |
|
113
|
|
|
* |
|
114
|
|
|
* @param array $collectionList |
|
115
|
|
|
* @return array |
|
116
|
|
|
*/ |
|
117
|
8 |
|
private function parseCollectionsListToArray(array $collectionList) |
|
118
|
|
|
{ |
|
119
|
8 |
|
return array_map( |
|
120
|
8 |
|
function ($collection) { |
|
121
|
8 |
|
return (array)$collection; |
|
122
|
8 |
|
}, |
|
123
|
|
|
$collectionList |
|
124
|
8 |
|
); |
|
125
|
|
|
} |
|
126
|
|
|
|
|
127
|
|
|
/** |
|
128
|
|
|
* Unshifts $this to $array. |
|
129
|
|
|
* |
|
130
|
|
|
* @param array $array |
|
131
|
|
|
* @return array |
|
132
|
|
|
*/ |
|
133
|
8 |
|
private function prepareCollections(array $array) |
|
134
|
|
|
{ |
|
135
|
8 |
|
array_unshift($array, $this); |
|
136
|
8 |
|
return $array; |
|
137
|
|
|
} |
|
138
|
|
|
} |
|
139
|
|
|
|
This check compares the return type specified in the
@returnannotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.