in debug builds this will panic!
(x: i32, y: i32)
| 30 | |
| 31 | /// in debug builds this will panic! |
| 32 | pub fn checked(x: i32, y: i32) -> i32 { |
| 33 | x * y |
| 34 | } |
| 35 | |
| 36 | /// float equality (hack! - does not handle NaN/Infinity, see https://floating-point-gui.de/errors/comparison/) |
| 37 | pub fn float_eq(a: f32, b: f32) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected