val method

int val(
  1. int i
)

Implementation

int val( int i ){
	if( i >= _val.length ){
		return 0;
	}
	return _val[i];
}