Related for Array#eql?
This commit is contained in:
parent
c147e43b4f
commit
d8aa8f4184
Notes:
git
2024-09-12 14:34:15 +00:00
4
array.c
4
array.c
@ -5237,7 +5237,7 @@ recursive_eql(VALUE ary1, VALUE ary2, int recur)
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* call-seq:
|
* call-seq:
|
||||||
* array.eql?(other_array) -> true or false
|
* eql?(other_array) -> true or false
|
||||||
*
|
*
|
||||||
* Returns +true+ if +self+ and +other_array+ are the same size,
|
* Returns +true+ if +self+ and +other_array+ are the same size,
|
||||||
* and if, for each index +i+ in +self+, <tt>self[i].eql?(other_array[i])</tt>:
|
* and if, for each index +i+ in +self+, <tt>self[i].eql?(other_array[i])</tt>:
|
||||||
@ -5250,6 +5250,8 @@ recursive_eql(VALUE ary1, VALUE ary2, int recur)
|
|||||||
*
|
*
|
||||||
* This method is different from method Array#==,
|
* This method is different from method Array#==,
|
||||||
* which compares using method <tt>Object#==</tt>.
|
* which compares using method <tt>Object#==</tt>.
|
||||||
|
*
|
||||||
|
* Related: see {Methods for Querying}[rdoc-ref:Array@Methods+for+Querying].
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user