Implements BigFixed unary operators.
immutable x = BigFixed(1, 10) / 2; assert(+x == x); assert(-x == BigFixed(-1, 10) / 2); assert(~x == -x - x.resolution);
See Implementation
Implements BigFixed unary operators.