()
| 584 | |
| 585 | Deno.test("MultiMap.groupBy() accepts an arbitrary iterable", () => { |
| 586 | function* gen() { |
| 587 | yield 1; |
| 588 | yield 2; |
| 589 | yield 3; |
| 590 | } |
| 591 | |
| 592 | const grouped = MultiMap.groupBy(gen(), (n) => n % 2 === 0 ? "even" : "odd"); |
| 593 |
no outgoing calls
no test coverage detected