class Arel::Nodes::Unary
Attributes
Public Class Methods
Source
# File lib/arel/nodes/unary.rb, line 8 def initialize expr super() @expr = expr end
Calls superclass method
Arel::Nodes::Node::new
Public Instance Methods
Source
# File lib/arel/nodes/unary.rb, line 17 def eql? other self.class == other.class && self.expr == other.expr end
Also aliased as: ==