In Files

Methods

Class Index [+]

Quicksearch

Arel::Math

Public Instance Methods

*(other) click to toggle source
   # File lib/arel/math.rb, line 3
3:     def *(other)
4:       Arel::Nodes::Multiplication.new(self, other)
5:     end
+(other) click to toggle source
   # File lib/arel/math.rb, line 7
7:     def +(other)
8:       Arel::Nodes::Grouping.new(Arel::Nodes::Addition.new(self, other))
9:     end
-(other) click to toggle source
    # File lib/arel/math.rb, line 11
11:     def -(other)
12:       Arel::Nodes::Grouping.new(Arel::Nodes::Subtraction.new(self, other))
13:     end
/(other) click to toggle source
    # File lib/arel/math.rb, line 15
15:     def /(other)
16:       Arel::Nodes::Division.new(self, other)
17:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.