= private = protected
This method is deprecated or moved on the latest stable version. The last existing version (v2_2_9) is shown here.
These similar methods exist in v2_5_5:
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