The module description, above, explains the different policies.
In mixed-policy checkedint operations, the higher ranking policy should be used.
assert(!IntFlagPolicy.none); // none == 0 assert(IntFlagPolicy.sticky > IntFlagPolicy.none); assert(IntFlagPolicy.asserts > IntFlagPolicy.sticky); assert(IntFlagPolicy.throws > IntFlagPolicy.asserts);
See Implementation
The module description, above, explains the different policies.