class Sunspot::Query::Restriction::AnyOf

Results must have field with value included in given collection

Public Instance Methods

negated?() click to toggle source
# File lib/sunspot/query/restriction.rb, line 290
def negated?
  if @value.empty?
    false
  else
    super
  end
end