This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

eql?

        # Array.eql?

(from ruby core)
---
    array.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`, `self[i].eql? other_array[i]`:
    a0 = [:foo, 'bar', 2]
    a1 = [:foo, 'bar', 2]
    a1.eql?(a0) # => true

Otherwise, returns `false`.

This method is different from method [Array#==](#method-i-3D-3D), which
compares using method `Object#==`.



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.