method

eql?

rails 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