Return true if self is less than other. Otherwise
return false.
ISO 15.3.3.2.1
# File mrblib/compar.rb, line 13
def < other
cmp = self <=> other
if cmp.nil?
false
elsif cmp < 0
true
else
false
end
end
Return true if self is less than or equal to
other. Otherwise return false.
ISO 15.3.3.2.2
# File mrblib/compar.rb, line 30
def <= other
cmp = self <=> other
if cmp.nil?
false
elsif cmp <= 0
true
else
false
end
end
Return true if self is equal to other. Otherwise
return false.
ISO 15.3.3.2.3
# File mrblib/compar.rb, line 47
def == other
cmp = self <=> other
if cmp == 0
true
else
false
end
end
Return true if self is greater than other.
Otherwise return false.
ISO 15.3.3.2.4
# File mrblib/compar.rb, line 62
def > other
cmp = self <=> other
if cmp.nil?
false
elsif cmp > 0
true
else
false
end
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.