xor static method

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

Implementation

static double xor( double a, double b ){
	return (a.toInt() ^ b.toInt()).toDouble();
}