Class: Arel::Nodes::Unary
Instance Attribute Summary collapse
-
#expr ⇒ Object
Returns the value of attribute expr.
Instance Method Summary collapse
-
#initialize(expr) ⇒ Unary
constructor
A new instance of Unary.
Methods inherited from Node
#and, #each, #not, #or, #to_sql
Constructor Details
#initialize(expr) ⇒ Unary
Returns a new instance of Unary.
6 7 8 |
# File 'lib/arel/nodes/unary.rb', line 6 def initialize expr @expr = expr end |
Instance Attribute Details
#expr ⇒ Object
Returns the value of attribute expr.
4 5 6 |
# File 'lib/arel/nodes/unary.rb', line 4 def expr @expr end |