MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / to_wstring

Function to_wstring

system/lib/libcxx/src/string.cpp:367–367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365
366#if _LIBCPP_HAS_WIDE_CHARACTERS
367wstring to_wstring(int val) { return i_to_string<wstring>(val); }
368wstring to_wstring(long val) { return i_to_string<wstring>(val); }
369wstring to_wstring(long long val) { return i_to_string<wstring>(val); }
370wstring to_wstring(unsigned val) { return i_to_string<wstring>(val); }

Callers

nothing calls this directly

Calls 2

as_stringFunction · 0.85
get_swprintfFunction · 0.85

Tested by

no test coverage detected