class Rack::Headers

def slice(*a)

:nocov:
def slice(*a)
  h = self.class.new
  a.each{|k| h[k] = self[k] if has_key?(k)}
  h
end