= private = protected
each()
Iterates over the request headers
# File lib/webrick/httprequest.rb, line 296 def each if @header @header.each{|k, v| value = @header[k] yield(k, value.empty? ? nil : value.join(", ")) } end end