aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/math.rb
blob: f3dbc7bc494386d0b573acd8878399d6ba896b80 (plain) (tree)
1
2
3
4
5
6
7
8

             




                                                  
                                                                       


                
                                                                          




                                            
     
   
module Arel
  module Math
    def *(other)
      Arel::Nodes::Multiplication.new(self, other)
    end

    def +(other)
      Arel::Nodes::Grouping.new(Arel::Nodes::Addition.new(self, other))
    end

    def -(other)
      Arel::Nodes::Grouping.new(Arel::Nodes::Subtraction.new(self, other))
    end

    def /(other)
      Arel::Nodes::Division.new(self, other)
    end
  end
end