method

eql?

v6.1.3.1 - Show latest stable - Class: Arel::Nodes::Casted
eql?(other)
public

No documentation available.

# File activerecord/lib/arel/nodes/casted.rb, line 29
      def eql?(other)
        self.class == other.class &&
          self.value == other.value &&
          self.attribute == other.attribute
      end