Method: Code::Object::Integer#code_inferior_or_equal

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

#code_inferior_or_equal(other) ⇒ Object



254
255
256
257
# File 'lib/code/object/integer.rb', line 254

def code_inferior_or_equal(other)
  code_other = other.to_code
  Boolean.new(raw <= code_other.raw)
end