Flowdock
method

eql?

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: SelectStatement
eql?(other) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/arel/nodes/select_statement.rb, line 29
      def eql?(other)
        self.class == other.class &&
          self.cores == other.cores &&
          self.orders == other.orders &&
          self.limit == other.limit &&
          self.lock == other.lock &&
          self.offset == other.offset &&
          self.with == other.with
      end
Register or log in to add new notes.