add method

void add(
  1. int i,
  2. int value
)

Implementation

void add( int i, int value ){
	set( i, val(i) + value );
}