Class: ArelExtensions::Nodes::Trim
- Defined in:
- lib/arel_extensions/nodes/trim.rb
Constant Summary collapse
- RETURN_TYPE =
:string
Instance Method Summary collapse
- #+(other) ⇒ Object
-
#initialize(expr) ⇒ Trim
constructor
A new instance of Trim.
Methods inherited from Function
#!=, #==, #as, #convert_to_date_node, #convert_to_datetime_node, #convert_to_node, #convert_to_number, #convert_to_string_node, #expr, #left, #return_type, #right, #type_of_attribute
Methods included from Predications
#cast, #convert_to_node, #imatches, #in, #matches, #not_in, #when
Constructor Details
#initialize(expr) ⇒ Trim
Returns a new instance of Trim.
6 7 8 9 10 11 |
# File 'lib/arel_extensions/nodes/trim.rb', line 6 def initialize expr tab = expr.map { |arg| convert_to_node(arg) } return super(tab) end |
Instance Method Details
#+(other) ⇒ Object
13 14 15 |
# File 'lib/arel_extensions/nodes/trim.rb', line 13 def +(other) return ArelExtensions::Nodes::Concat.new(self.expressions + [other]) end |