(double a, double b)
| 300 | } |
| 301 | |
| 302 | public static double and(double a, double b) { |
| 303 | return (long) a & (long) b; |
| 304 | } |
| 305 | |
| 306 | public static double xor(double a, double b) { |
| 307 | return (long) a ^ (long) b; |
nothing calls this directly
no outgoing calls
no test coverage detected