div static method

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

Implementation

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