@ -9,6 +9,14 @@ import std.meta;
import std.format;
import std.stdio;
T
RoundUp(T a, T b)
{
a += b - 1;
a -= a%b;
return a;
}
T AlignPow2(T)(T v, T a)
return (v + a - 1) & ~(a - 1);
The note is not visible to the blocked user.