28String String::fromUtf8(T begin, T end)
31 Utf8::toUtf32(begin, end, std::back_inserter(
string.m_string));
38String String::fromUtf16(T begin, T end)
41 Utf16::toUtf32(begin, end, std::back_inserter(
string.m_string));
48String String::fromUtf32(T begin, T end)
51 string.m_string.assign(begin, end);
Utility string class that automatically handles conversions between types and encodings.