eql?(other)public
No documentation available.
# File activerecord/lib/arel/nodes/case.rb, line 40
def eql?(other)
self.class == other.class &&
self.case == other.case &&
self.conditions == other.conditions &&
self.default == other.default
end