Method: Code::Object::Integer#code_inferior

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

#code_inferior(other) ⇒ Object



249
250
251
252
# File 'lib/code/object/integer.rb', line 249

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