-
Notifications
You must be signed in to change notification settings - Fork 5
/
Map.php
339 lines (307 loc) · 7.12 KB
/
Map.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
<?php
declare(strict_types = 1);
namespace Innmind\Immutable;
/**
* @template-covariant T
* @template-covariant S
* @psalm-immutable
*/
final class Map implements \Countable
{
private Map\Implementation $implementation;
private function __construct(Map\Implementation $implementation)
{
$this->implementation = $implementation;
}
/**
* Set a new key/value pair
*
* Example:
* <code>
* Map::of()
* (1, 2)
* (3, 4)
* </code>
*
* @param T $key
* @param S $value
*
* @return self<T, S>
*/
public function __invoke($key, $value): self
{
return new self(($this->implementation)($key, $value));
}
/**
* @template U
* @template V
* @psalm-pure
*
* @param list<array{0: U, 1: V}> $pairs
*
* @return self<U, V>
*/
public static function of(array ...$pairs): self
{
$self = new self(new Map\Uninitialized);
foreach ($pairs as [$key, $value]) {
$self = ($self)($key, $value);
}
return $self;
}
/**
* @return 0|positive-int
*/
public function size(): int
{
return $this->implementation->size();
}
/**
* @return 0|positive-int
*/
public function count(): int
{
return $this->size();
}
/**
* Set a new key/value pair
*
* @param T $key
* @param S $value
*
* @return self<T, S>
*/
public function put($key, $value): self
{
return ($this)($key, $value);
}
/**
* Return the element with the given key
*
* @param T $key
*
* @return Maybe<S>
*/
public function get($key): Maybe
{
return $this->implementation->get($key);
}
/**
* Check if there is an element for the given key
*
* @param T $key
*/
public function contains($key): bool
{
return $this->implementation->contains($key);
}
/**
* Return an empty map of the same type
*
* @return self<T, S>
*/
public function clear(): self
{
return new self($this->implementation->clear());
}
/**
* Check if the two maps are equal
*
* @param self<T, S> $map
*/
public function equals(self $map): bool
{
return $this->implementation->equals($map->implementation);
}
/**
* Filter the map based on the given predicate
*
* @param callable(T, S): bool $predicate
*
* @return self<T, S>
*/
public function filter(callable $predicate): self
{
return new self($this->implementation->filter($predicate));
}
/**
* Exclude elements that match the predicate
*
* @param callable(T, S): bool $predicate
*
* @return self<T, S>
*/
public function exclude(callable $predicate): self
{
/** @psalm-suppress MixedArgument */
return $this->filter(static fn($key, $value) => !$predicate($key, $value));
}
/**
* Run the given function for each element of the map
*
* @param callable(T, S): void $function
*/
public function foreach(callable $function): SideEffect
{
return $this->implementation->foreach($function);
}
/**
* Return a new map of pairs' sequences grouped by keys determined with the given
* discriminator function
*
* @template D
*
* @param callable(T, S): D $discriminator
*
* @return self<D, self<T, S>>
*/
public function groupBy(callable $discriminator): self
{
return $this->implementation->groupBy($discriminator);
}
/**
* Return all keys
*
* @return Set<T>
*/
public function keys(): Set
{
return $this->implementation->keys();
}
/**
* Return all values
*
* @return Sequence<S>
*/
public function values(): Sequence
{
return $this->implementation->values();
}
/**
* Apply the given function on all elements and return a new map
*
* @template B
*
* @param callable(T, S): B $function
*
* @return self<T, B>
*/
public function map(callable $function): self
{
return new self($this->implementation->map($function));
}
/**
* Merge all Maps created by each value from the initial Map
*
* @template A
* @template B
*
* @param callable(T, S): self<A, B> $map
*
* @return self<A, B>
*/
public function flatMap(callable $map): self
{
/** @var self<A, B> */
$all = self::of();
/**
* @psalm-suppress InvalidArgument
* @psalm-suppress MixedArgument
*/
return $this->reduce(
$all,
static fn(self $carry, $key, $value) => $carry->merge($map($key, $value)),
);
}
/**
* Remove the element with the given key
*
* @param T $key
*
* @return self<T, S>
*/
public function remove($key): self
{
return new self($this->implementation->remove($key));
}
/**
* Create a new map by combining both maps
*
* @param self<T, S> $map
*
* @return self<T, S>
*/
public function merge(self $map): self
{
return new self($this->implementation->merge($map->implementation));
}
/**
* Return a map of 2 maps partitioned according to the given predicate
*
* @param callable(T, S): bool $predicate
*
* @return self<bool, self<T, S>>
*/
public function partition(callable $predicate): self
{
return $this->implementation->partition($predicate);
}
/**
* Reduce the map to a single value
*
* @template I
* @template R
*
* @param I $carry
* @param callable(I|R, T, S): R $reducer
*
* @return I|R
*/
public function reduce($carry, callable $reducer)
{
return $this->implementation->reduce($carry, $reducer);
}
public function empty(): bool
{
return $this->implementation->empty();
}
/**
* @param callable(T, S): bool $predicate
*
* @return Maybe<Pair<T, S>>
*/
public function find(callable $predicate): Maybe
{
return $this->implementation->find($predicate);
}
/**
* @param callable(T, S): bool $predicate
*/
public function matches(callable $predicate): bool
{
/** @psalm-suppress MixedArgument For some reason Psalm no longer recognize the type in `find` */
return $this
->find(static fn($key, $value) => !$predicate($key, $value))
->match(
static fn() => false,
static fn() => true,
);
}
/**
* @param callable(T, S): bool $predicate
*/
public function any(callable $predicate): bool
{
return $this->find($predicate)->match(
static fn() => true,
static fn() => false,
);
}
/**
* @return Sequence<Pair<T, S>>
*/
public function toSequence(): Sequence
{
return $this->implementation->toSequence();
}
}