light/modules/lsd/thread.cppm

14 lines
215 B
Text
Raw Normal View History

2025-11-16 14:29:03 +03:30
export module lsd.thread;
import std;
export namespace lt::lsd {
using thread_id = std::thread::id;
[[nodiscard]] auto this_thread_id() -> thread_id
{
return std::this_thread::get_id();
}
} // namespace lt::sd