method
each
v7.1.3.4 -
Show latest stable
- Class:
ActionDispatch::Response::Buffer
each(&block)public
No documentation available.
# File actionpack/lib/action_dispatch/http/response.rb, line 129
def each(&block)
if @str_body
return enum_for(:each) unless block_given?
yield @str_body
else
each_chunk(&block)
end
end