add method

void add(
  1. int n
)

Adds n bytes to the sum.

Implementation

void add(int n) {
  _sum += n;
}