| 1124 | /** @brief Copies the characters into a container. */ |
| 1125 | template <typename container_> |
| 1126 | void to(container_ &container) { |
| 1127 | for (auto ch : *this) container.push_back(ch); |
| 1128 | } |
| 1129 | |
| 1130 | /** @brief Copies the characters into a consumed container, returning it at the end. */ |
| 1131 | template <typename container_> |