shiftR static method

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

Implementation

static double shiftR( double a, double b ){
	return (a.toInt() >> b.toInt()).toDouble();
}