add method

ParamFloat add(
  1. double val
)

Implementation

ParamFloat add( double val ){
	_val += val;
	return this;
}