method
each_data
each_data()
public
Hide source
# File lib/webrick/httputils.rb, line 262 def each_data tmp = self while tmp next_data = tmp.next_data yield(tmp) tmp = next_data end end