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