(lhs: (NaiveDateTime, NaiveDateTime), rhs: (NaiveDateTime, NaiveDateTime))
| 509 | } |
| 510 | |
| 511 | fn overlaps(lhs: (NaiveDateTime, NaiveDateTime), rhs: (NaiveDateTime, NaiveDateTime)) -> bool { |
| 512 | lhs.0 <= rhs.1 && rhs.0 <= lhs.1 |
| 513 | } |
| 514 | |
| 515 | fn apply_purge_and_embargo( |
| 516 | initial_train: &[usize], |
no outgoing calls
no test coverage detected