MCPcopy Create free account
hub / github.com/Extra-Creativity/Modern-Cpp-Basics / main

Function main

08-String & Stream/code/Decompose.cpp:23–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
22
23int main()
24{
25 std::wstring s1 = L"\U0000FFFF"; DecomposeToByte(s1);
26 std::u8string s2 = u8"\U0001F449"; DecomposeToByte(s2);
27 std::u16string s3 = u"\U0001F449"; DecomposeToByte(s3);
28 std::u32string s4 = U"\U0001F449"; DecomposeToByte(s4);
29 return 0;
30}

Callers

nothing calls this directly

Calls 1

DecomposeToByteFunction · 0.85

Tested by

no test coverage detected