method
eql?
v7.1.3.4 -
Show latest stable
- Class:
Arel::Nodes::Binary
eql?(other)public
No documentation available.
# File activerecord/lib/arel/nodes/binary.rb, line 24
def eql?(other)
self.class == other.class &&
self.left == other.left &&
self.right == other.right
end