# File lib/slop.rb, line 716
  def respond_to?(method)
    method = method.to_s
    if method[-1] == ?? and @options.any? { |o| o.key == method.chop }
      true
    else
      super
    end
  end