days_before_months

Function days_before_months 

Source
pub fn days_before_months(numeric_dates: &[Vec<i32>]) -> Option<bool>
Expand description

Takes an array of numeric dates and tries to understand if the days come before the month or the other way around by running the dates through various checks.

Output is true if days are first, false if they are second, or None if it failed to understand the order.