and static method

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

Implementation

static double and( double a, double b ){
	return (a.toInt() & b.toInt()).toDouble();
}