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

Method xor

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

Source from the content-addressed store, hash-verified

304 }
305
306 public static double xor(double a, double b) {
307 return (long) a ^ (long) b;
308 }
309
310 public static double shiftLeft(double a, double b) {
311 return (long) a << (long) b;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected