The basic integral value of this SafeInt. Accessing this directly may be useful for:
import checkedint.throws : SafeInt; // use IntFlagPolicy.throws SafeInt!uint n; static assert(is(typeof(n.bscal) == uint)); n = 7u; assert(n.bscal == 7u); n.bscal -= 8u; assert(n == uint.max);
See Implementation
The basic integral value of this SafeInt. Accessing this directly may be useful for: