Class: Arel::Nodes::Unary

Inherits:
Node
  • Object
show all
Defined in:
lib/arel/nodes/unary.rb

Direct Known Subclasses

Ordering, UnqualifiedColumn, With

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#and, #each, #not, #or, #to_sql

Methods included from FactoryMethods

#create_and, #create_false, #create_join, #create_on, #create_string_join, #create_table_alias, #create_true, #grouping, #lower

Constructor Details

#initialize(expr) ⇒ Unary

Returns a new instance of Unary.



7
8
9
# File 'lib/arel/nodes/unary.rb', line 7

def initialize expr
  @expr = expr
end

Instance Attribute Details

#exprObject Also known as: value

Returns the value of attribute expr.



4
5
6
# File 'lib/arel/nodes/unary.rb', line 4

def expr
  @expr
end