Method: Code::Object::Decimal#code_right_shift

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

#code_right_shift(other) ⇒ Object



239
240
241
# File 'lib/code/object/decimal.rb', line 239

def code_right_shift(other)
  Integer.new(raw.to_i >> other.raw.to_i)
end