module Druid::PostAggregationOperators

Public Instance Methods

*(value) click to toggle source
# File lib/druid/post_aggregation.rb, line 129
def *(value)
  PostAggregationOperation.new(self, :*, value)
end
+(value) click to toggle source
# File lib/druid/post_aggregation.rb, line 121
def +(value)
  PostAggregationOperation.new(self, :+, value)
end
-(value) click to toggle source
# File lib/druid/post_aggregation.rb, line 125
def -(value)
  PostAggregationOperation.new(self, :-, value)
end
/(value) click to toggle source
# File lib/druid/post_aggregation.rb, line 133
def /(value)
  PostAggregationOperation.new(self, :/, value)
end