/* import std.file: SysTime; */ /* SysTime st; */ Limits!int x; x.expand(-10); x.expand(10); assert(x[0] == -10); assert(x[1] == +10); version(show) dbg(x);
See Implementation