xentara-utils v1.1
Xentara utilities library
|
Threading functionality. More...
Namespaces | |
namespace | deprecated |
Functions | |
template<typename Char , typename CharTraits = std::char_traits<Char>> | |
auto | toBasicString (std::thread::id id=std::this_thread::get_id()) -> std::basic_string< Char, CharTraits > |
Converts a thread ID to a string. More... | |
template<typename Char , typename CharTraits = std::char_traits<Char>> | |
auto | toBasicString (const std::thread &thread) -> std::basic_string< Char, CharTraits > |
Converts the thread ID of a thread to a string. More... | |
auto | toString (std::thread::id id=std::this_thread::get_id()) -> std::string |
Converts a thread ID to a string of type char More... | |
auto | toString (const std::thread &thread) -> std::string |
Converts the thread ID of a thread to a string of type char More... | |
auto | toWString (std::thread::id id=std::this_thread::get_id()) -> std::wstring |
Converts a thread ID to a string of type wchar_t More... | |
auto | toWString (const std::thread &thread) -> std::wstring |
Converts the thread ID of a thread to a string of type wchar_t More... | |
auto | toU8String (std::thread::id id=std::this_thread::get_id()) -> std::u8string |
Converts a thread ID to a string of type char8_t More... | |
auto | toU8String (const std::thread &thread) -> std::u8string |
Converts the thread ID of a thread to a string of type char8_t More... | |
auto | toU16String (std::thread::id id=std::this_thread::get_id()) -> std::u16string |
Converts a thread ID to a string of type char16_t More... | |
auto | toU16String (const std::thread &thread) -> std::u16string |
Converts the thread ID of a thread to a string of type char16_t More... | |
auto | toU32String (std::thread::id id=std::this_thread::get_id()) -> std::u32string |
Converts a thread ID to a string of type char32_t More... | |
auto | toU32String (const std::thread &thread) -> std::u32string |
Converts the thread ID of a thread to a string of type char32_t More... | |
Threading functionality.
This namespace contains functionality related to threads.
auto xentara::utils::threads::toBasicString | ( | const std::thread & | thread | ) | -> std::basic_string<Char, CharTraits> |
Converts the thread ID of a thread to a string.
thread | The thread |
auto xentara::utils::threads::toBasicString | ( | std::thread::id | id = std::this_thread::get_id() | ) | -> std::basic_string<Char, CharTraits> |
Converts a thread ID to a string.
id | The thread ID |
auto xentara::utils::threads::toString | ( | const std::thread & | thread | ) | -> std::string |
Converts the thread ID of a thread to a string of type char
thread | The thread |
auto xentara::utils::threads::toString | ( | std::thread::id | id = std::this_thread::get_id() | ) | -> std::string |
Converts a thread ID to a string of type char
id | The thread ID |
auto xentara::utils::threads::toU16String | ( | const std::thread & | thread | ) | -> std::u16string |
Converts the thread ID of a thread to a string of type char16_t
thread | The thread |
auto xentara::utils::threads::toU16String | ( | std::thread::id | id = std::this_thread::get_id() | ) | -> std::u16string |
Converts a thread ID to a string of type char16_t
id | The thread ID |
auto xentara::utils::threads::toU32String | ( | const std::thread & | thread | ) | -> std::u32string |
Converts the thread ID of a thread to a string of type char32_t
thread | The thread |
auto xentara::utils::threads::toU32String | ( | std::thread::id | id = std::this_thread::get_id() | ) | -> std::u32string |
Converts a thread ID to a string of type char32_t
id | The thread ID |
auto xentara::utils::threads::toU8String | ( | const std::thread & | thread | ) | -> std::u8string |
Converts the thread ID of a thread to a string of type char8_t
thread | The thread |
auto xentara::utils::threads::toU8String | ( | std::thread::id | id = std::this_thread::get_id() | ) | -> std::u8string |
Converts a thread ID to a string of type char8_t
id | The thread ID |
auto xentara::utils::threads::toWString | ( | const std::thread & | thread | ) | -> std::wstring |
Converts the thread ID of a thread to a string of type wchar_t
thread | The thread |
auto xentara::utils::threads::toWString | ( | std::thread::id | id = std::this_thread::get_id() | ) | -> std::wstring |
Converts a thread ID to a string of type wchar_t
id | The thread ID |