Method: Code::Object::Decimal#code_left_shift

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

#code_left_shift(other) ⇒ Object



203
204
205
# File 'lib/code/object/decimal.rb', line 203

def code_left_shift(other)
  Integer.new(raw.to_i << other.raw.to_i)
end