light/modules/lsd/hash.cppm
light7734 b7ae2f7048
Some checks reported errors
continuous-integration/drone/push Build was killed
wip: feat: lsd
2025-11-16 14:29:03 +03:30

8 lines
115 B
C++

export module lsd.hash;
import std;
export namespace lt::lsd {
template<typename T>
using hash = std::hash<T>;
}