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