method

eql?

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: BoundSqlLiteral
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/bound_sql_literal.rb, line 42
      def eql?(other)
        self.class == other.class &&
          sql_with_placeholders == other.sql_with_placeholders &&
          positional_binds == other.positional_binds &&
          named_binds == other.named_binds
      end
Register or log in to add new notes.