limits

Undocumented in source. Be warned that the author may not have intended to support it.
limits
(
T
)
()

Examples

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

Meta