ceil method

MathComplex ceil()

Implementation

MathComplex ceil(){
	return MathComplex(
		ClipMath.ceil( _re ),
		ClipMath.ceil( _im )
		);
}