Decimal.opEquals

Compare other price number.

struct Decimal
const @nogc nothrow pure
bool
opEquals
()
(
auto scope ref const(Decimal) other
)

Parameters

other const(Decimal)

other value.

Return Value

Type: bool

true if equal value.

Examples

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));

Meta