Method: Code::Object::Integer#code_right_shift

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

#code_right_shift(other) ⇒ Object



301
302
303
# File 'lib/code/object/integer.rb', line 301

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