class SplitIoClient::PartOfSetMatcher

def match?(args)

def match?(args)
  @local_set = local_set(args[:attributes], @attribute)
  if @local_set.empty?
    @logger.log_if_debug('[PartOfSetMatcher] Local Set is empty.')
    return false
  end
  matches = @local_set.subset? @remote_set
  @logger.log_if_debug("[PartOfSetMatcher] Local Set #{@local_set} is a subset of #{@remote_set} -> #{matches}")
  matches
end