Class: ArelExtensions::Nodes::Round

Inherits:
Function
  • Object
show all
Defined in:
lib/arel_extensions/nodes/round.rb

Constant Summary collapse

RETURN_TYPE =
:number

Constants inherited from Function

Function::MBSTRING

Instance Method Summary collapse

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) ⇒ Round

Returns a new instance of Round.



6
7
8
9
10
11
12
# File 'lib/arel_extensions/nodes/round.rb', line 6

def initialize expr
  if expr && expr.length == 1
    super [convert_to_node(expr.first)]
  else
    super [convert_to_node(expr.first), convert_to_number(expr[1])]
  end
end