class Async::HTTP::Headers

def each

def each
	return to_enum unless block_given?
	
	@hash.each do |key, value|
		yield stringify(key), value
	end
end