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
|
<?php
namespace ipl\Stdlib;
use Generator;
use InvalidArgumentException;
use IteratorIterator;
use Traversable;
use stdClass;
/**
* Detect and return the PHP type of the given subject
*
* If subject is an object, the name of the object's class is returned, otherwise the subject's type.
*
* @param mixed $subject
*
* @return string
*/
function get_php_type($subject)
{
if (is_object($subject)) {
return get_class($subject);
} else {
return gettype($subject);
}
}
/**
* Get the array value of the given subject
*
* @param array<mixed>|object|Traversable $subject
*
* @return array<mixed>
*
* @throws InvalidArgumentException If subject type is invalid
*/
function arrayval($subject)
{
if (is_array($subject)) {
return $subject;
}
if ($subject instanceof stdClass) {
return (array) $subject;
}
if ($subject instanceof Traversable) {
// Works for generators too
return iterator_to_array($subject);
}
throw new InvalidArgumentException(sprintf(
'arrayval expects arrays, objects or instances of Traversable. Got %s instead.',
get_php_type($subject)
));
}
/**
* Get the first key of an iterable
*
* @param iterable<mixed> $iterable
*
* @return mixed The first key of the iterable if it is not empty, null otherwise
*/
function iterable_key_first($iterable)
{
foreach ($iterable as $key => $_) {
return $key;
}
return null;
}
/**
* Get the first value of an iterable
*
* @param iterable<mixed> $iterable
*
* @return ?mixed
*/
function iterable_value_first($iterable)
{
foreach ($iterable as $_ => $value) {
return $value;
}
return null;
}
/**
* Yield sets of items from a sorted traversable grouped by a specific criterion gathered from a callback
*
* The traversable must be sorted by the criterion. The callback must return at least the criterion,
* but can also return value and key in addition.
*
* @param Traversable<mixed, mixed> $traversable
* @param callable(mixed $value, mixed $key): array{0: mixed, 1?: mixed, 2?: mixed} $groupBy
*
* @return Generator
*/
function yield_groups(Traversable $traversable, callable $groupBy): Generator
{
$iterator = new IteratorIterator($traversable);
$iterator->rewind();
if (! $iterator->valid()) {
return;
}
list($criterion, $v, $k) = array_pad((array) $groupBy($iterator->current(), $iterator->key()), 3, null);
$group = [$k ?? $iterator->key() => $v ?? $iterator->current()];
$iterator->next();
for (; $iterator->valid(); $iterator->next()) {
list($c, $v, $k) = array_pad((array) $groupBy($iterator->current(), $iterator->key()), 3, null);
if ($c !== $criterion) {
yield $criterion => $group;
$group = [];
$criterion = $c;
}
$group[$k ?? $iterator->key()] = $v ?? $iterator->current();
}
yield $criterion => $group;
}
|