= private = protected
each_value()
Iterates through header values, passing each value to the code block.
# File lib/net/http/header.rb, line 131 def each_value #:yield: +value+ block_given? or return enum_for(__method__) @header.each_value do |va| yield va.join(', ') end end