light/modules/lsd/literals.cppm
light7734 72662f3742
Some checks reported errors
continuous-integration/drone/push Build was killed
wip: feat: lsd
2025-11-17 13:17:05 +03:30

12 lines
211 B
C++

export module lsd.literals;
import lsd.str;
import std;
export namespace lt {
constexpr str_view operator""sv(const char *str, unsigned long len) noexcept
{
return str_view { str, len };
}
} // namespace lt