module ArXiv::QueryOperator
Public Instance Methods
and(query)
click to toggle source
# File lib/ar_xiv/request.rb, line 3 def and(query) ComposedQuery.new("AND", self, query) end
andnot(query)
click to toggle source
# File lib/ar_xiv/request.rb, line 11 def andnot(query) ComposedQuery.new("ANDNOT", self, query) end
or(query)
click to toggle source
# File lib/ar_xiv/request.rb, line 7 def or(query) ComposedQuery.new("OR", self, query) end