shiftL static method

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

Implementation

static double shiftL( double a, double b ){
	return (a.toInt() << b.toInt()).toDouble();
}