Flowdock
method

each

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: Buffer
each(&block) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/http/response.rb, line 120
      def each(&block)
        if @str_body
          return enum_for(:each) unless block_given?

          yield @str_body
        else
          each_chunk(&block)
        end
      end
Register or log in to add new notes.