sub method

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

Implementation

void sub( int i, int value ){
	set( i, val(i) - value );
}