Compare other price number.
other value.
true if equal value.
immutable a = Decimal(123456, 3); assert(a == a); immutable b = Decimal(1234560, 4); assert(a == b); assert(a != Decimal(123457, 3)); assert(a != Decimal(1234567, 4));
See Implementation
Compare other price number.