Return this string's data as a std::wstring. Translation will occur if necessary based on the underlying string type.
| 584 | // necessary based on the underlying string type. |
| 585 | /// |
| 586 | std::wstring ToWString() const { |
| 587 | if (empty()) |
| 588 | return std::wstring(); |
| 589 | return traits::to_wstring(string_); |
| 590 | } |
| 591 | |
| 592 | /// |
| 593 | // Set this string's data from an existing std::wstring. Data will be always |
no outgoing calls
no test coverage detected