checkedint-aware version of std.traits.mostNegative
assert(mostNegative!int == int.min); static assert(is(typeof(mostNegative!int) == int)); assert(mostNegative!(SmartInt!int) == SmartInt!(int).min); static assert(is(typeof(mostNegative!(SmartInt!int)) == SmartInt!int));
See Implementation
checkedint-aware version of std.traits.mostNegative