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

Method shiftRight

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

Source from the content-addressed store, hash-verified

312 }
313
314 public static double shiftRight(double a, double b) {
315 return (long) a >> (long) b;
316 }
317
318 public static double unsignedShiftRight(double a, double b) {
319 return (long) a >>> (long) b;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected