The basic scalar value of this SmartInt. Accessing this directly may be useful for:
1 import checkedint.throws : SmartInt; // use IntFlagPolicy.throws 2 3 SmartInt!uint n; 4 static assert(is(typeof(n.bscal) == uint)); 5 6 n = 7; 7 assert(n.bscal == 7); 8 9 n.bscal -= 8; 10 assert(n == uint.max);
See Implementation
The basic scalar value of this SmartInt. Accessing this directly may be useful for: