Get the absolute value of num.
IntFlag.posOver is raised if N is signed and num == N.min.
import checkedint.noex : safeOp; // use IntFlagPolicy.noex assert(safeOp.abs(-25) == 25); assert(safeOp.abs(745u) == 745u); safeOp.abs(int.min); assert(IntFlags.local.clear() == IntFlag.posOver);
See Implementation
Get the absolute value of num.
IntFlag.posOver is raised if N is signed and num == N.min.