From bf9cbdc73887a75781b9ec5780f9a908a5db6f49 Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 19 Dec 2003 00:01:19 +0000 Subject: Fix dependency issue git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5215 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compar.c | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) (limited to 'compar.c') diff --git a/compar.c b/compar.c index 5376ce445..1488b2c65 100644 --- a/compar.c +++ b/compar.c @@ -69,6 +69,15 @@ cmp_failed() return Qnil; } +/* + * call-seq: + * obj == other => true or false + * + * Compares two objects based on the receiver's <=> + * method, returning true if it returns 0. Also returns true if + * _obj_ and _other_ are the same object. + */ + static VALUE cmp_equal(x, y) VALUE x, y; @@ -81,6 +90,14 @@ cmp_equal(x, y) return rb_rescue(cmp_eq, (VALUE)a, cmp_failed, 0); } +/* + * call-seq: + * obj > other => true or false + * + * Compares two objects based on the receiver's <=> + * method, returning true if it returns 1. + */ + static VALUE cmp_gt(x, y) VALUE x, y; @@ -92,6 +109,14 @@ cmp_gt(x, y) return Qfalse; } +/* + * call-seq: + * obj >= other => true or false + * + * Compares two objects based on the receiver's <=> + * method, returning true if it returns 0 or 1. + */ + static VALUE cmp_ge(x, y) VALUE x, y; @@ -103,6 +128,14 @@ cmp_ge(x, y) return Qfalse; } +/* + * call-seq: + * obj < other => true or false + * + * Compares two objects based on the receiver's <=> + * method, returning true if it returns -1. + */ + static VALUE cmp_lt(x, y) VALUE x, y; @@ -114,6 +147,15 @@ cmp_lt(x, y) return Qfalse; } + +/* + * call-seq: + * obj <= other => true or false + * + * Compares two objects based on the receiver's <=> + * method, returning true if it returns -1 or 0. + */ + static VALUE cmp_le(x, y) VALUE x, y; @@ -125,6 +167,21 @@ cmp_le(x, y) return Qfalse; } +/* + * call-seq: + * obj.between?(min, max) => true or false + * + * Returns false if obj <=> + * min is less than zero or if anObject <=> + * max is greater than zero, true otherwise. + * + * 3.between?(1, 5) #=> true + * 6.between?(1, 5) #=> false + * 'cat'.between?('ant', 'dog') #=> true + * 'gnu'.between?('ant', 'dog') #=> false + * + */ + static VALUE cmp_between(x, min, max) VALUE x, min, max; @@ -134,6 +191,43 @@ cmp_between(x, min, max) return Qtrue; } +/* + * The Comparable mixin is used by classes whose objects + * may be ordered. The class must define the <=> operator, + * which compares the receiver against another object, returning -1, 0, + * or +1 depending on whether the receiver is less than, equal to, or + * greater than the other object. Comparable uses + * <=> to implement the conventional comparison operators + * (<, <=, ==, >=, + * and >) and the method between?. + * + * class SizeMatters + * include Comparable + * attr :str + * def <=>(anOther) + * str.size <=> anOther.str.size + * end + * def initialize(str) + * @str = str + * end + * def inspect + * @str + * end + * end + * + * s1 = SizeMatters.new("Z") + * s2 = SizeMatters.new("YY") + * s3 = SizeMatters.new("XXX") + * s4 = SizeMatters.new("WWWW") + * s5 = SizeMatters.new("VVVVV") + * + * s1 < s2 #=> true + * s4.between?(s1, s3) #=> false + * s4.between?(s3, s5) #=> true + * [ s3, s2, s5, s4, s1 ].sort #=> [Z, YY, XXX, WWWW, VVVVV] + * + */ + void Init_Comparable() { -- cgit