| 2406 | } |
| 2407 | |
| 2408 | String String::utf16(const char16_t* p_utf16, int p_len) |
| 2409 | { |
| 2410 | String ret; |
| 2411 | ret.parse_utf16(p_utf16, p_len); |
| 2412 | |
| 2413 | return ret; |
| 2414 | } |
| 2415 | |
| 2416 | Error String::parse_utf16(const char16_t* p_utf16, int p_len) |
| 2417 | { |
no test coverage detected