Module: Druid::PostAggregationOperators

Included in:
PostAggregationField, PostAggregationOperation
Defined in:
lib/druid/post_aggregation.rb

Instance Method Summary collapse

Instance Method Details

#*(value) ⇒ Object



19
20
21
# File 'lib/druid/post_aggregation.rb', line 19

def *(value)
  PostAggregationOperation.new(self, :*, value)
end

#+(value) ⇒ Object



11
12
13
# File 'lib/druid/post_aggregation.rb', line 11

def +(value)
  PostAggregationOperation.new(self, :+, value)
end

#-(value) ⇒ Object



15
16
17
# File 'lib/druid/post_aggregation.rb', line 15

def -(value)
  PostAggregationOperation.new(self, :-, value)
end

#/(value) ⇒ Object



23
24
25
# File 'lib/druid/post_aggregation.rb', line 23

def /(value)
  PostAggregationOperation.new(self, :/, value)
end