method

each

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