| 626 | /** @brief Copies the matches into a container. */ |
| 627 | template <typename container_> |
| 628 | void to(container_ &container) { |
| 629 | for (auto match : *this) container.push_back(match); |
| 630 | } |
| 631 | |
| 632 | /** @brief Copies the matches into a consumed container, returning it at the end. */ |
| 633 | template <typename container_> |