| 846 | /** @brief Copies the matches into a container. */ |
| 847 | template <typename container_> |
| 848 | void to(container_ &container) { |
| 849 | for (auto match : *this) container.push_back(match); |
| 850 | } |
| 851 | |
| 852 | /** @brief Copies the matches into a consumed container, returning it at the end. */ |
| 853 | template <typename container_> |