Implements BigFixed equality test
auto x = BigFixed(1, 10) / 2; auto y = BigFixed(5, 10) / 2; assert(x == x); assert(x != y); assert((x + 2) == y);
See Implementation
Implements BigFixed equality test