true if x precedes y, false otherwise Notes: totalOrderAbs checks the order between |x| and |y|
assert (totalOrder(decimal32.min_normal, decimal64.max)); assert (!totalOrder(decimal32.max, decimal128.min_normal)); assert (totalOrder(-decimal64(0), decimal64(0))); assert (totalOrderAbs(decimal64(0), -decimal64(0)));
Checks the order between two _decimal values