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