4#ifndef FTXUI_SCREEN_STRING_HPP
5#define FTXUI_SCREEN_STRING_HPP
12std::string
to_string(std::wstring_view s);
17 return to_wstring(std::string_view(std::to_string(s)));
28std::vector<std::string>
Utf8ToGlyphs(std::string_view input);
The FTXUI ftxui:: namespace.
std::vector< std::string > Utf8ToGlyphs(std::string_view input)
std::string to_string(std::wstring_view s)
Convert a std::wstring into a UTF8 std::string.
std::vector< int > CellToGlyphIndex(std::string_view input)
int string_width(std::string_view)
std::wstring to_wstring(std::string_view s)
Convert a UTF8 std::string into a std::wstring.