SmartInt.min

The most negative possible value of this SmartInt type.

struct SmartInt(N, IntFlagPolicy _policy, Flag!"bitOps" bitOps = Yes.bitOps)
enum SmartInt!(N, policy, bitOps) min;

Examples

import checkedint.throws : SmartInt; // use IntFlagPolicy.throws

assert(SmartInt!(int).min == int.min);
assert(SmartInt!(uint).min == uint.min);

Meta