Lines Matching refs:ymd_opt
1899 let ymd_opt = |y, m, d| NaiveDate::from_ymd_opt(y, m, d); in test_date_from_ymd() localVariable
1901 assert!(ymd_opt(2012, 0, 1).is_none()); in test_date_from_ymd()
1902 assert!(ymd_opt(2012, 1, 1).is_some()); in test_date_from_ymd()
1903 assert!(ymd_opt(2012, 2, 29).is_some()); in test_date_from_ymd()
1904 assert!(ymd_opt(2014, 2, 29).is_none()); in test_date_from_ymd()
1905 assert!(ymd_opt(2014, 3, 0).is_none()); in test_date_from_ymd()
1906 assert!(ymd_opt(2014, 3, 1).is_some()); in test_date_from_ymd()
1907 assert!(ymd_opt(2014, 3, 31).is_some()); in test_date_from_ymd()
1908 assert!(ymd_opt(2014, 3, 32).is_none()); in test_date_from_ymd()
1909 assert!(ymd_opt(2014, 12, 31).is_some()); in test_date_from_ymd()
1910 assert!(ymd_opt(2014, 13, 1).is_none()); in test_date_from_ymd()