16 lines
248 B
Text
16 lines
248 B
Text
|
|
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
|