MCPcopy Create free account
hub / github.com/Aghajari/MathParser / and

Method and

MathParser/src/com/aghajari/math/Functions.java:302–304  ·  view source on GitHub ↗
(double a, double b)

Source from the content-addressed store, hash-verified

300 }
301
302 public static double and(double a, double b) {
303 return (long) a & (long) b;
304 }
305
306 public static double xor(double a, double b) {
307 return (long) a ^ (long) b;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected