module CloudSesame::Query::DSL::RangeHelper

Public Instance Methods

gt(input) click to toggle source
# File lib/cloud_sesame/query/dsl/range_helper.rb, line 6
def gt(input)
        AST::RangeValue.new.gt input
end
gte(input) click to toggle source
# File lib/cloud_sesame/query/dsl/range_helper.rb, line 10
def gte(input)
        AST::RangeValue.new.gte input
end
lt(input) click to toggle source
# File lib/cloud_sesame/query/dsl/range_helper.rb, line 14
def lt(input)
        AST::RangeValue.new.lt input
end
lte(input) click to toggle source
# File lib/cloud_sesame/query/dsl/range_helper.rb, line 18
def lte(input)
        AST::RangeValue.new.lte input
end