method

to_ary

rails latest stable - Class: ActionDispatch::Response::Buffer
to_ary()
public

No documentation available.

# File actionpack/lib/action_dispatch/http/response.rb, line 106
      def to_ary
        @buf.respond_to?(:to_ary) ?
          @buf.to_ary :
          @buf.each
      end