# File lib/mongo/operation/update/bulk_result.rb, line 89
        def n_modified
          return 0 unless acknowledged?
          @replies.reduce(0) do |n, reply|
            if n && reply.documents.first[MODIFIED]
              n += reply.documents.first[MODIFIED]
            else
              0
            end
          end
        end