Total Complexity | 6 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | class MixedSetIterableImplementation |
||
12 | { |
||
13 | /** |
||
14 | * @template T |
||
15 | * |
||
16 | * @param bool $strict |
||
17 | * @param int $m |
||
18 | * @param iterable<T> ...$sets |
||
19 | * |
||
20 | * @return \Generator<T> |
||
21 | */ |
||
22 | 356 | public static function partialIntersection(bool $strict, int $m, iterable ...$sets): \Generator |
|
49 |