mod static method

double mod(
  1. double a,
  2. double b
)

Implementation

static double mod( double a, double b/*符号なし整数値*/ ){
	return imod( a.toInt(), b.toInt() ).toDouble();
}