1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/math.rb

21 lines
331 B
Ruby
Raw Normal View History

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