mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* object.c (rb_obj_cmp): Improve doc for Kernel#<=>
to clarify #equal? is not called. [See GH-352] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41867 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0c620c2ec3
commit
59d1fc3615
1 changed files with 3 additions and 2 deletions
5
object.c
5
object.c
|
@ -1375,7 +1375,8 @@ rb_obj_not_match(VALUE obj1, VALUE obj2)
|
|||
* call-seq:
|
||||
* obj <=> other -> 0 or nil
|
||||
*
|
||||
* Returns 0 if obj.equal?(other) or obj == other, otherwise nil.
|
||||
* Returns 0 if +obj+ and +other+ are the same object
|
||||
* or <code>obj == other</code>, otherwise nil.
|
||||
*
|
||||
* The <=> is used by various methods to compare objects, for example
|
||||
* Enumerable#sort, Enumerable#max etc.
|
||||
|
@ -1385,7 +1386,7 @@ rb_obj_not_match(VALUE obj1, VALUE obj2)
|
|||
* 1 means self is bigger than other. Nil means the two values could not be
|
||||
* compared.
|
||||
*
|
||||
* When you defined <=>, you can include Comparable to gain the methods <=, <,
|
||||
* When you define <=>, you can include Comparable to gain the methods <=, <,
|
||||
* ==, >=, > and between?.
|
||||
*/
|
||||
static VALUE
|
||||
|
|
Loading…
Add table
Reference in a new issue