light/modules/lsd/arr.cppm

10 lines
134 B
Text
Raw Normal View History

2025-11-16 14:29:03 +03:30
export module lsd.arr;
import std;
export namespace lt::lsd {
template<typename T, size_t size>
using arr = std::array<T, size>;
}