diff options
author | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-19 00:01:19 +0000 |
---|---|---|
committer | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-19 00:01:19 +0000 |
commit | d3b74e1806e572592b4242bee140813ffeefdaf1 (patch) | |
tree | 3f69040917e25ad5314c61c71dd9d767b03f3e17 /compar.c | |
parent | 84f0b051de55b80211eab0ad2438f500af45e4a5 (diff) | |
download | ruby-d3b74e1806e572592b4242bee140813ffeefdaf1.tar.gz |
Fix dependency issue
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5215 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compar.c')
-rw-r--r-- | compar.c | 94 |
1 files changed, 94 insertions, 0 deletions
@@ -69,6 +69,15 @@ cmp_failed() return Qnil; } +/* + * call-seq: + * obj == other => true or false + * + * Compares two objects based on the receiver's <code><=></code> + * 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 <code><=></code> + * 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 <code><=></code> + * 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 <code><=></code> + * 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 <code><=></code> + * 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 <code>false</code> if <i>obj</i> <code><=></code> + * <i>min</i> is less than zero or if <i>anObject</i> <code><=></code> + * <i>max</i> is greater than zero, <code>true</code> 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 <code>Comparable</code> mixin is used by classes whose objects + * may be ordered. The class must define the <code><=></code> 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. <code>Comparable</code> uses + * <code><=></code> to implement the conventional comparison operators + * (<code><</code>, <code><=</code>, <code>==</code>, <code>>=</code>, + * and <code>></code>) and the method <code>between?</code>. + * + * 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() { |