(double a, double b)
| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected