sqr method

MathValue sqr()

Implementation

MathValue sqr(){
	type();
	if( _type == ClipMath.valueTypeComplex ) return complexToValue( _c.sqr() );
	if( _type == ClipMath.valueTypeFract   ) return fractToValue  ( _f.sqr() );
	return fractToValue( _tmpFract().sqr() );
}