Implements 3-way comparisons of BigFixed with BigFixed or BigFixed with built-in integers.
immutable x = BigFixed(100, 10); immutable y = BigFixed(10, 10); immutable int z = 50; const int w = 200; assert(y < x); assert(x > z); assert(z > y); assert(x < w);
See Implementation
Implements 3-way comparisons of BigFixed with BigFixed or BigFixed with built-in integers.