class Protocol::HTTP::Headers

def trailer(&block)

Enumerate all headers in the trailer, if there are any.
def trailer(&block)
	return to_enum(:trailer) unless block_given?
	
	if @tail
		@fields.drop(@tail).each(&block)
	end
end