# File lib/mongo/operation/delete/bulk_result.rb, line 33
        def n_removed
          return 0 unless acknowledged?
          @replies.reduce(0) do |n, reply|
            if reply.documents.first[Result::N]
              n += reply.documents.first[Result::N]
            else
              n
            end
          end
        end