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

Method shiftLeft

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

Source from the content-addressed store, hash-verified

308 }
309
310 public static double shiftLeft(double a, double b) {
311 return (long) a << (long) b;
312 }
313
314 public static double shiftRight(double a, double b) {
315 return (long) a >> (long) b;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected