# File lib/arel/nodes/unary.rb, line 17 def eql? other self.class == other.class && self.expr == other.expr end
# File lib/arel/nodes/unary.rb, line 13 def hash @expr.hash end
# File lib/arel/nodes/unary.rb, line 8 def initialize expr super() @expr = expr end