or static method

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

Implementation

static double or( double a, double b ){
	return (a.toInt() | b.toInt()).toDouble();
}