-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathMap.php
538 lines (496 loc) · 15.3 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
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
<?php
declare(strict_types=1);
namespace Psl\Collection;
use Closure;
use Psl\Dict;
use Psl\Iter;
use function array_key_exists;
use function array_key_first;
use function array_key_last;
use function array_keys;
use function array_slice;
use function array_values;
use function count;
/**
* @template Tk of array-key
* @template Tv
*
* @implements MapInterface<Tk, Tv>
*/
final class Map implements MapInterface
{
/**
* @param array<Tk, Tv> $elements
*/
public function __construct(
private readonly array $elements
) {
}
/**
* @template Tsk of array-key
* @template Tsv
*
* @param array<Tsk, Tsv> $elements
*
* @return Map<Tsk, Tsv>
*
* @pure
*/
public static function fromArray(array $elements): Map
{
/** @psalm-suppress ImpureMethodCall - conditionally pure */
return new self($elements);
}
/**
* Returns the first value in the current collection.
*
* @return Tv|null The first value in the current collection, or `null` if the
* current collection is empty.
*
* @psalm-mutation-free
*/
public function first(): mixed
{
$key = $this->firstKey();
if (null === $key) {
return null;
}
return $this->elements[$key];
}
/**
* Returns the first key in the current collection.
*
* @return Tk|null The first key in the current collection, or `null` if the
* current collection is empty.
*
* @psalm-mutation-free
*/
public function firstKey(): int|string|null
{
return array_key_first($this->elements);
}
/**
* Returns the last value in the current collection.
*
* @return Tv|null The last value in the current collection, or `null` if the
* current collection is empty.
*
* @psalm-mutation-free
*/
public function last(): mixed
{
$key = $this->lastKey();
if (null === $key) {
return null;
}
return $this->elements[$key];
}
/**
* Returns the last key in the current collection.
*
* @return Tk|null The last key in the current collection, or `null` if the
* current collection is empty.
*
* @psalm-mutation-free
*/
public function lastKey(): int|string|null
{
return array_key_last($this->elements);
}
/**
* Returns the index of the first element that matches the search value.
*
* If no element matches the search value, this function returns null.
*
* @param Tv $search_value The value that will be search for in the current
* collection.
*
* @return Tk|null The key (index) where that value is found; null if it is not found
*
* @psalm-mutation-free
*/
public function linearSearch(mixed $search_value): int|string|null
{
foreach ($this->elements as $key => $element) {
if ($search_value === $element) {
return $key;
}
}
return null;
}
/**
* Retrieve an external iterator.
*
* @return Iter\Iterator<Tk, Tv>
*/
public function getIterator(): Iter\Iterator
{
return Iter\Iterator::create($this->elements);
}
/**
* Is the map empty?
*
* @psalm-mutation-free
*/
public function isEmpty(): bool
{
return [] === $this->elements;
}
/**
* Get the number of elements in the current map.
*
* @psalm-mutation-free
*
* @return int<0, max>
*/
public function count(): int
{
/** @var int<0, max> */
return count($this->elements);
}
/**
* Get an array copy of the current map.
*
* @return array<Tk, Tv>
*
* @psalm-mutation-free
*/
public function toArray(): array
{
return $this->elements;
}
/**
* Get an array copy of the current map.
*
* @return array<Tk, Tv>
*
* @psalm-mutation-free
*/
public function jsonSerialize(): array
{
return $this->elements;
}
/**
* Returns the value at the specified key in the current map.
*
* @param Tk $k
*
* @throws Exception\OutOfBoundsException If $k is out-of-bounds.
*
* @return Tv
*
* @psalm-mutation-free
*/
public function at(string|int $k): mixed
{
if (!array_key_exists($k, $this->elements)) {
throw Exception\OutOfBoundsException::for($k);
}
return $this->elements[$k];
}
/**
* Determines if the specified key is in the current map.
*
* @param Tk $k
*
* @psalm-mutation-free
*/
public function contains(int|string $k): bool
{
return array_key_exists($k, $this->elements);
}
/**
* Returns the value at the specified key in the current map.
*
* @param Tk $k
*
* @return Tv|null
*
* @psalm-mutation-free
*/
public function get(string|int $k): mixed
{
return $this->elements[$k] ?? null;
}
/**
* Returns a `Vector` containing the values of the current
* `Map`.
*
* @return Vector<Tv>
*
* @psalm-mutation-free
*/
public function values(): Vector
{
return Vector::fromArray($this->elements);
}
/**
* Returns a `Vector` containing the keys of the current `Map`.
*
* @return Vector<Tk>
*
* @psalm-mutation-free
*/
public function keys(): Vector
{
return Vector::fromArray(array_keys($this->elements));
}
/**
* Returns a `Map` containing the values of the current `Map`
* that meet a supplied condition.
*
* Only values that meet a certain criteria are affected by a call to
* `filter()`, while all values are affected by a call to `map()`.
*
* The keys associated with the current `Map` remain unchanged in the
* returned `Map`.
*
* @param (Closure(Tv): bool) $fn The callback containing the condition to apply to the current
* `Map` values.
*
* @return Map<Tk, Tv> A Map containing the values after a user-specified condition
* is applied.
*/
public function filter(Closure $fn): Map
{
return new Map(Dict\filter($this->elements, $fn));
}
/**
* Returns a `Map` containing the values of the current `Map`
* that meet a supplied condition applied to its keys and values.
*
* Only keys and values that meet a certain criteria are affected by a call
* to `filterWithKey()`, while all values are affected by a call to
* `mapWithKey()`.
*
* The keys associated with the current `Map` remain unchanged in the
* returned `Map`; the keys will be used in the filtering process only.
*
* @param (Closure(Tk, Tv): bool) $fn The callback containing the condition to apply to the current
* `Map` keys and values.
*
* @return Map<Tk, Tv> A `Map` containing the values after a user-specified
* condition is applied to the keys and values of the current `Map`.
*/
public function filterWithKey(Closure $fn): Map
{
return new Map(Dict\filter_with_key($this->elements, $fn));
}
/**
* Returns a `Map` after an operation has been applied to each value
* in the current `Map`.
*
* Every value in the current Map is affected by a call to `map()`, unlike
* `filter()` where only values that meet a certain criteria are affected.
*
* The keys will remain unchanged from the current `Map` to the
* returned `Map`.
*
* @template Tu
*
* @param (Closure(Tv): Tu) $fn The callback containing the operation to apply to the current
* `Map` values.
*
* @return Map<Tk, Tu> A `Map` containing key/value pairs after a user-specified
* operation is applied.
*/
public function map(Closure $fn): Map
{
return new Map(Dict\map($this->elements, $fn));
}
/**
* Returns a `Map` after an operation has been applied to each key and
* value in the current `Map`.
*
* Every key and value in the current `Map` is affected by a call to
* `mapWithKey()`, unlike `filterWithKey()` where only values that meet a
* certain criteria are affected.
*
* The keys will remain unchanged from this `Map` to the returned
* `Map`. The keys are only used to help in the mapping operation.
*
* @template Tu
*
* @param (Closure(Tk, Tv): Tu) $fn The callback containing the operation to apply to the current
* `Map` keys and values.
*
* @return Map<Tk, Tu> A `Map` containing the values after a user-specified
* operation on the current `Map`'s keys and values is applied.
*/
public function mapWithKey(Closure $fn): Map
{
return new Map(Dict\map_with_key($this->elements, $fn));
}
/**
* Returns a `Map` where each element is a `array{0: Tv, 1: Tu}` that combines the
* element of the current `Map` and the provided elements.
*
* If the number of elements of the `Map` are not equal to the
* number of elements in `$elements`, then only the combined elements
* up to and including the final element of the one with the least number of
* elements is included.
*
* @template Tu
*
* @param array<array-key, Tu> $elements The elements to use to combine with the elements of this `Map`.
*
* @return Map<Tk, array{0: Tv, 1: Tu}> The `Map` that combines the values of the current `Map` with the provided elements.
*
* @psalm-mutation-free
*/
public function zip(array $elements): Map
{
$elements = array_values($elements);
/** @var array<Tk, array{0: Tv, 1: Tu}> $result */
$result = [];
foreach ($this->elements as $k => $v) {
$u = $elements[0] ?? null;
if (null === $u) {
break;
}
$elements = array_slice($elements, 1);
$result[$k] = [$v, $u];
}
return new Map($result);
}
/**
* Returns a `Map` containing the first `n` values of the current
* `Map`.
*
* The returned `Map` will always be a proper subset of the current
* `Map`.
*
* `$n` is 1-based. So the first element is 1, the second 2, etc.
*
* @param int<0, max> $n The last element that will be included in the returned
* `Map`.
*
* @return Map<Tk, Tv> A `Map` that is a proper subset of the current
* `Map` up to `n` elements.
*
* @psalm-mutation-free
*/
public function take(int $n): Map
{
return $this->slice(0, $n);
}
/**
* Returns a `Map` containing the values of the current `Map`
* up to but not including the first value that produces `false` when passed
* to the specified callback.
*
* The returned `Map` will always be a proper subset of the current
* `Map`.
*
* @param (Closure(Tv): bool) $fn The callback that is used to determine the stopping
* condition.
*
* @return Map<Tk, Tv> A `Map` that is a proper subset of the current
* `Map` up until the callback returns `false`.
*/
public function takeWhile(Closure $fn): Map
{
return new Map(Dict\take_while($this->elements, $fn));
}
/**
* Returns a `Map` containing the values after the `n`-th element of
* the current `Map`.
*
* The returned `Map` will always be a proper subset of the current
* `Map`.
*
* `$n` is 1-based. So the first element is 1, the second 2, etc.
*
* @param int<0, max> $n The last element to be skipped; the $n+1 element will be the
* first one in the returned `Map`.
*
* @return Map<Tk, Tv> A `Map` that is a proper subset of the current
* `Map` containing values after the specified `n`-th element.
*
* @psalm-mutation-free
*/
public function drop(int $n): Map
{
return $this->slice($n);
}
/**
* Returns a `Map` containing the values of the current `Map`
* starting after and including the first value that produces `true` when
* passed to the specified callback.
*
* The returned `Map` will always be a proper subset of the current
* `Map`.
*
* @param (Closure(Tv): bool) $fn The callback used to determine the starting element for the
* returned `Map`.
*
* @return Map<Tk, Tv> A `Map` that is a proper subset of the current
* `Map` starting after the callback returns `true`.
*/
public function dropWhile(Closure $fn): Map
{
return new Map(Dict\drop_while($this->elements, $fn));
}
/**
* Returns a subset of the current `Map` starting from a given key up
* to, but not including, the element at the provided length from the starting
* key.
*
* `$start` is 0-based. $len is 1-based. So `slice(0, 2)` would return the
* elements at key 0 and 1.
*
* The returned `Map` will always be a proper subset of this `Map`.
*
* @param int<0, max> $start The starting key of this Vector to begin the returned
* `Map`.
* @param null|int<0, max> $length The length of the returned `Map`
*
* @return Map<Tk, Tv> A `Map` that is a proper subset of the current
* `Map` starting at `$start` up to but not including the element `$start + $length`.
*
* @psalm-mutation-free
*/
public function slice(int $start, ?int $length = null): Map
{
/** @psalm-suppress ImpureFunctionCall - conditionally pure */
$result = Dict\slice($this->elements, $start, $length);
return self::fromArray($result);
}
/**
* Returns a `Vector` containing the original `Map` split into
* chunks of the given size.
*
* If the original `Map` doesn't divide evenly, the final chunk will be smaller.
*
* @param positive-int $size The size of each chunk.
*
* @return Vector<Map<Tk, Tv>> A `Vector` containing the original `Map` split into chunks of the given size.
*
* @psalm-mutation-free
*/
public function chunk(int $size): Vector
{
/** @psalm-suppress ImpureMethodCall */
return $this
->zip($this->keys()->toArray())
->values()
->chunk($size)
->map(
/**
* @param Vector<array{0: Tv, 1: Tk}> $vector
*
* @return Map<Tk, Tv>
*
* @pure
*/
static function (Vector $vector): Map {
/** @var array<Tk, Tv> $array */
$array = [];
foreach ($vector->toArray() as [$v, $k]) {
$array[$k] = $v;
}
return Map::fromArray($array);
}
);
}
}