2025-11-16 14:29:03 +03:30
|
|
|
export module lsd.str;
|
|
|
|
|
import std;
|
|
|
|
|
|
|
|
|
|
export namespace lt::lsd {
|
|
|
|
|
|
|
|
|
|
using c_str = const char *;
|
|
|
|
|
|
|
|
|
|
using str = std::string;
|
|
|
|
|
|
|
|
|
|
using str_view = std::string_view;
|
|
|
|
|
|
|
|
|
|
template<typename... T>
|
|
|
|
|
using format_str = std::format_string<T...>;
|
|
|
|
|
|
2025-11-18 19:06:44 +03:30
|
|
|
using std::format_context;
|
|
|
|
|
using std::format_parse_context;
|
|
|
|
|
using std::format_to;
|
|
|
|
|
using std::formatter;
|
|
|
|
|
|
2025-11-16 14:29:03 +03:30
|
|
|
} // namespace lt::lsd
|