(s: String)
| 93 | } |
| 94 | |
| 95 | pub fn is_number(s: String) -> bool { // sneaky way but you **should** think of |
| 96 | s.trim().parse::<f64>().is_ok() |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | #[derive(PartialEq, Debug)] |
nothing calls this directly
no outgoing calls
no test coverage detected