Lightweight 0.1.0
Loading...
Searching...
No Matches
Unicode conversion functions

Functions for converting between different (Unicode) encodings. More...

Functions

LIGHTWEIGHT_API std::u8string ToUtf8 (std::u32string_view u32InputString)
 
LIGHTWEIGHT_API std::u8string ToUtf8 (std::u16string_view u16InputString)
 
template<typename T >
requires (std::same_as<T, wchar_t> && sizeof(wchar_t) == 2)
LIGHTWEIGHT_FORCE_INLINE std::u8string ToUtf8 (std::basic_string_view< T > u16InputString)
 
template<typename T >
requires std::same_as<T, char32_t> || (std::same_as<T, wchar_t> && sizeof(wchar_t) == 4)
std::u16string ToUtf16 (const std::basic_string_view< T > u32InputString)
 
LIGHTWEIGHT_API std::u16string ToUtf16 (std::u8string_view u8InputString)
 
LIGHTWEIGHT_API std::u16string ToUtf16 (std::string const &localeInputString)
 
template<typename T = std::u32string>
ToUtf32 (std::u8string_view u8InputString)
 
template<typename T = std::u32string>
ToUtf32 (std::u16string_view u16InputString)
 
LIGHTWEIGHT_API std::wstring ToStdWideString (std::u8string_view u8InputString)
 
LIGHTWEIGHT_API std::wstring ToStdWideString (std::string const &localeInputString)
 

Detailed Description

Functions for converting between different (Unicode) encodings.

Function Documentation

◆ ToUtf8() [1/3]

LIGHTWEIGHT_API std::u8string ToUtf8 ( std::u32string_view  u32InputString)

Converts from UTF-32 to UTF-8.

Referenced by ToUtf8().

◆ ToUtf8() [2/3]

LIGHTWEIGHT_API std::u8string ToUtf8 ( std::u16string_view  u16InputString)

Converts from UTF-16 to UTF-8.

◆ ToUtf8() [3/3]

template<typename T >
requires (std::same_as<T, wchar_t> && sizeof(wchar_t) == 2)
LIGHTWEIGHT_FORCE_INLINE std::u8string ToUtf8 ( std::basic_string_view< T >  u16InputString)
inline

Converts from UTF-16 (as wchar_t) to UTF-8.

Definition at line 221 of file UnicodeConverter.hpp.

References ToUtf8().

◆ ToUtf16() [1/3]

template<typename T >
requires std::same_as<T, char32_t> || (std::same_as<T, wchar_t> && sizeof(wchar_t) == 4)
std::u16string ToUtf16 ( const std::basic_string_view< T >  u32InputString)

Converts from UTF-32 to UTF-16.

Definition at line 241 of file UnicodeConverter.hpp.

◆ ToUtf16() [2/3]

LIGHTWEIGHT_API std::u16string ToUtf16 ( std::u8string_view  u8InputString)

Converts from UTF-8 to UTF-16.

◆ ToUtf16() [3/3]

LIGHTWEIGHT_API std::u16string ToUtf16 ( std::string const &  localeInputString)

Converts from local 8-bit string to UTF-16.

◆ ToUtf32() [1/2]

template<typename T = std::u32string>
T ToUtf32 ( std::u8string_view  u8InputString)

Converts from UTF-8 to UTF-32.

Definition at line 265 of file UnicodeConverter.hpp.

◆ ToUtf32() [2/2]

template<typename T = std::u32string>
T ToUtf32 ( std::u16string_view  u16InputString)

Converts from UTF-16 to UTF-32.

Definition at line 278 of file UnicodeConverter.hpp.