abs method

MathValue abs()

Implementation

MathValue abs(){
	type();
	if( _type == ClipMath.valueTypeComplex ) return floatToValue( _c.fabs() );
	if( _type == ClipMath.valueTypeFract   ) return fractToValue( _f.abs () );
	return fractToValue( _tmpFract().abs() );
}