Conversions
| 292 | |
| 293 | // Conversions |
| 294 | std::string to_string() const |
| 295 | { |
| 296 | return this->join(cmList::element_separator); |
| 297 | } |
| 298 | |
| 299 | operator container_type&() & noexcept { return this->Values; } |
| 300 | operator container_type const&() const& noexcept { return this->Values; } |