class Sunspot::Query::Restriction::AllOf

Results must have field with values matching all values in given collection (only makes sense for fields with multiple values)

Public Instance Methods

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