Method: Arel::Nodes::BindParam#eql?
- Defined in:
- activerecord/lib/arel/nodes/bind_param.rb
#eql?(other) ⇒ Boolean Also known as: ==
17 18 19 20 |
# File 'activerecord/lib/arel/nodes/bind_param.rb', line 17 def eql?(other) other.is_a?(BindParam) && value == other.value end |