aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/math.rb
blob: b7c2419233c6b5dc5d3bd3d7a5570c645acfddad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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