class SplitIoClient::Matcher


class to implement the all keys matcher

def equals?(obj)

Returns:
  • (boolean) - true if obj equals the matcher

Parameters:
  • obj (object) -- object to be evaluated
def equals?(obj)
  if obj.nil?
    false
  elsif !obj.instance_of?(self.class)
    false
  elsif equal?(obj)
    true
  else
    false
  end
end

def initialize(logger)

def initialize(logger)
  @logger = logger
end

def string_type?

def string_type?
  false
end