(...input: (Item | Reply)[])
| 647 | let misses: Hit[] = [] |
| 648 | |
| 649 | const queue = (...input: (Item | Reply)[]) => { |
| 650 | list = [...list, ...input.map((value) => ({ item: item(value) }))] |
| 651 | } |
| 652 | |
| 653 | const queueMatch = (match: Match, ...input: (Item | Reply)[]) => { |
| 654 | list = [...list, ...input.map((value) => ({ item: item(value), match }))] |