xtd - Reference Guide
0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
|
#include <string>
#include "string_comparison.h"
#include "string_split_options.h"
#include "types.h"
#include "object.h"
#include "parse.h"
#include "to_string.h"
#include <cxxabi.h>
Contains xtd::ustring class.
Go to the source code of this file.
Classes | |
class | xtd::ustring |
Represents text as a sequence of UTF-8 code units. More... | |
Namespaces | |
namespace | xtd |
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more. | |
Functions | |
ustring | xtd::to_ustring (double val) |
Converts a floating point integer to xtd::ustring. | |
ustring | xtd::to_ustring (float val) |
Converts a floating point to xtd::ustring. | |
ustring | xtd::to_ustring (int val) |
Converts a signed integer to xtd::ustring. | |
ustring | xtd::to_ustring (long double val) |
Converts a floating point to xtd::ustring. | |
ustring | xtd::to_ustring (long long val) |
Converts a signed integer to xtd::ustring. | |
ustring | xtd::to_ustring (long val) |
Converts a signed integer to xtd::ustring. | |
template<typename type_t > | |
ustring | xtd::to_ustring (type_t val) |
Converts a type_t to xtd::ustring. | |
ustring | xtd::to_ustring (unsigned long long val) |
Converts an unsigned integer to xtd::ustring. | |
ustring | xtd::to_ustring (unsigned long val) |
Converts an unsigned integer to xtd::ustring. | |
ustring | xtd::to_ustring (unsigned val) |
Converts an unsigned integer to xtd::ustring. | |