Method: Code::Object::Decimal#code_multiplication

Defined in:
lib/code/object/decimal.rb

#code_multiplication(other) ⇒ Object



215
216
217
# File 'lib/code/object/decimal.rb', line 215

def code_multiplication(other)
  Decimal.new(raw * other.raw)
end