method
eql?
v7.1.3.4 -
Show latest stable
- Class:
Arel::Nodes::Function
eql?(other)public
No documentation available.
# File activerecord/lib/arel/nodes/function.rb, line 26
def eql?(other)
self.class == other.class &&
self.expressions == other.expressions &&
self.alias == other.alias &&
self.distinct == other.distinct
end