class SplitIoClient::ContainsAllMatcher

def match?(args)

def match?(args)
  if @remote_set.empty?
    @logger.log_if_debug('[ContainsAllMatcher] Remote Set Empty')
    return false
  end
  matches = @remote_set.subset? local_set(args[:attributes], @attribute)
  @logger.log_if_debug("[ContainsAllMatcher] Remote Set #{@remote_set} contains #{@attribute} -> #{matches}")
  matches
end