light/modules/lsd/str.cppm

16 lines
248 B
Text
Raw Normal View History

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...>;
} // namespace lt::lsd