| 730 | /** @brief Copies the matches into a container. */ |
| 731 | template <typename container_> |
| 732 | void to(container_ &container) { |
| 733 | for (auto match : *this) container.push_back(match); |
| 734 | } |
| 735 | |
| 736 | /** @brief Copies the matches into a consumed container, returning it at the end. */ |
| 737 | template <typename container_> |