Return this string's data as a std::string. Translation will occur if necessary based on the underlying string type.
| 560 | // necessary based on the underlying string type. |
| 561 | /// |
| 562 | std::string ToString() const { |
| 563 | if (empty()) |
| 564 | return std::string(); |
| 565 | return traits::to_string(string_); |
| 566 | } |
| 567 | |
| 568 | /// |
| 569 | // Set this string's data from an existing std::string. Data will be always |
no outgoing calls
no test coverage detected