Related for Array#eql?

This commit is contained in:
BurdetteLamar 2024-09-11 18:56:20 -05:00 committed by Peter Zhu
parent c147e43b4f
commit d8aa8f4184
Notes: git 2024-09-12 14:34:15 +00:00

View File

@ -5237,7 +5237,7 @@ recursive_eql(VALUE ary1, VALUE ary2, int recur)
/*
* 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,
* 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#==,
* which compares using method <tt>Object#==</tt>.
*
* Related: see {Methods for Querying}[rdoc-ref:Array@Methods+for+Querying].
*/
static VALUE