# File lib/arel/nodes/unary.rb, line 7 def initialize expr @expr = expr end
# File lib/arel/nodes/unary.rb, line 15 def eql? other self.class == other.class && self.expr == other.expr end
# File lib/arel/nodes/unary.rb, line 11 def hash @expr.hash end