| 964 | /** @brief Copies the matches into a container. */ |
| 965 | template <typename container_> |
| 966 | void to(container_ &container) { |
| 967 | for (auto match : *this) container.push_back(match); |
| 968 | } |
| 969 | |
| 970 | /** @brief Copies the matches into a consumed container, returning it at the end. */ |
| 971 | template <typename container_> |