aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/math_operation.rb
blob: d9820f1ecee1c149f4768967a6fcbc9649c38c88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Arel
  module Nodes
    class MathOperation < Binary
      include Arel::Expressions
      include Arel::Predications
      include Arel::Math
    end

    class Multiplication < MathOperation; end
    class Division < MathOperation; end
    class Addition < MathOperation; end
    class Subtraction < MathOperation; end

  end
end