class SplitIoClient::AllKeysMatcher

def equals?(obj)

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

Parameters:
  • obj (object) -- object to be evaluated
def equals?(obj)
  if obj.instance_of?(AllKeysMatcher)
    true
  else
    super(obj)
  end
end