12 lines
143 B
Text
12 lines
143 B
Text
|
|
export module lsd.bitwise;
|
||
|
|
|
||
|
|
export namespace lt::lsd {
|
||
|
|
|
||
|
|
/* bit-wise */
|
||
|
|
constexpr auto bit(auto x)
|
||
|
|
{
|
||
|
|
return 1u << x;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace lt::lsd
|