(value: &str, start: usize, end: usize)
| 281 | } |
| 282 | |
| 283 | fn parse_fixed_u32(value: &str, start: usize, end: usize) -> Option<u32> { |
| 284 | value.get(start..end)?.parse().ok() |
| 285 | } |
| 286 | |
| 287 | fn days_in_month(year: i32, month: u32) -> u32 { |
| 288 | match month { |
no test coverage detected