1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace Improved; |
||
6 | |||
7 | /** |
||
8 | * Filter out elements with null value and/or null key from iterator. |
||
9 | * |
||
10 | * @param iterable $iterable |
||
11 | * @return \Generator |
||
12 | */ |
||
13 | 8 | function iterable_cleanup(iterable $iterable): \Generator |
|
0 ignored issues
–
show
introduced
by
![]() |
|||
14 | { |
||
15 | 7 | foreach ($iterable as $key => $value) { |
|
16 | 6 | if (isset($key) && isset($value)) { |
|
17 | 6 | yield $key => $value; |
|
18 | } |
||
19 | } |
||
20 | } |
||
21 |