# File lib/thread_safe/util/adder.rb, line 47
      def sum
        x = base
        if current_cells = cells
          current_cells.each do |cell|
            x += cell.value if cell
          end
        end
        x
      end