зеркало из https://github.com/github/ruby.git
* string.c: rdoc for <=>, casecmp
* bignum.c: rdoc for <=> * file.c: ditto * time.c: ditto * compar.c: rdoc git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
2e868a3442
Коммит
705c567194
2
array.c
2
array.c
|
@ -2963,7 +2963,7 @@ recursive_cmp(VALUE ary1, VALUE ary2, int recur)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* array <=> other_array -> -1, 0, +1, nil
|
||||
* array <=> other_array -> -1, 0, +1 or nil
|
||||
*
|
||||
* Comparison---Returns an integer (-1, 0,
|
||||
* or +1) if this array is less than, equal to, or greater than
|
||||
|
|
2
bignum.c
2
bignum.c
|
@ -1273,7 +1273,7 @@ rb_big_to_f(VALUE x)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* big <=> numeric => -1, 0, +1
|
||||
* big <=> numeric => -1, 0, +1 or nil
|
||||
*
|
||||
* Comparison---Returns -1, 0, or +1 depending on whether <i>big</i> is
|
||||
* less than, equal to, or greater than <i>numeric</i>. This is the
|
||||
|
|
4
compar.c
4
compar.c
|
@ -163,7 +163,9 @@ cmp_between(VALUE x, VALUE min, VALUE max)
|
|||
* 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
|
||||
* greater than the other object. If the other object is not comparable
|
||||
* then the <code><=></code> operator should return nil.
|
||||
* <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>.
|
||||
|
|
2
file.c
2
file.c
|
@ -223,7 +223,7 @@ static struct timespec stat_mtimespec(struct stat *st);
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* stat <=> other_stat => -1, 0, 1
|
||||
* stat <=> other_stat => -1, 0, 1, nil
|
||||
*
|
||||
* Compares <code>File::Stat</code> objects by comparing their
|
||||
* respective modification times.
|
||||
|
|
8
string.c
8
string.c
|
@ -2162,7 +2162,7 @@ rb_str_eql(VALUE str1, VALUE str2)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* str <=> other_str => -1, 0, +1
|
||||
* str <=> other_str => -1, 0, +1 or nil
|
||||
*
|
||||
* Comparison---Returns -1 if <i>other_str</i> is greater than, 0 if
|
||||
* <i>other_str</i> is equal to, and +1 if <i>other_str</i> is less than
|
||||
|
@ -2213,7 +2213,7 @@ rb_str_cmp_m(VALUE str1, VALUE str2)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* str.casecmp(other_str) => -1, 0, +1
|
||||
* str.casecmp(other_str) => -1, 0, +1 or nil
|
||||
*
|
||||
* Case-insensitive version of <code>String#<=></code>.
|
||||
*
|
||||
|
@ -7161,7 +7161,7 @@ sym_succ(VALUE sym)
|
|||
/*
|
||||
* call-seq:
|
||||
*
|
||||
* str <=> other => -1, 0, +1
|
||||
* str <=> other => -1, 0, +1 or nil
|
||||
*
|
||||
* Compares _sym_ with _other_ in string form.
|
||||
*/
|
||||
|
@ -7178,7 +7178,7 @@ sym_cmp(VALUE sym, VALUE other)
|
|||
/*
|
||||
* call-seq:
|
||||
*
|
||||
* sym.casecmp(other) => -1, 0, +1
|
||||
* sym.casecmp(other) => -1, 0, +1 or nil
|
||||
*
|
||||
* Case-insensitive version of <code>Symbol#<=></code>.
|
||||
*/
|
||||
|
|
2
time.c
2
time.c
|
@ -2489,7 +2489,7 @@ time_subsec(VALUE time)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* time <=> other_time => -1, 0, +1
|
||||
* time <=> other_time => -1, 0, +1 or nil
|
||||
*
|
||||
* Comparison---Compares <i>time</i> with <i>other_time</i>.
|
||||
*
|
||||
|
|
Загрузка…
Ссылка в новой задаче