aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/math.rb
blob: b7c2419233c6b5dc5d3bd3d7a5570c645acfddad (plain) (tree)
1
2

             














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

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

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

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