check_input_parameters
Check the input parameters for the day_of_week
function.
Arguments
date
- The date of the monthmonth
- The month of the yearyear
- The year
Returns
true
- If the input parameters are validfalse
- If the input parameters are invalid
Fully qualified path: alexandria_math::zellers_congruence::check_input_parameters
#![allow(unused)] fn main() { pub fn check_input_parameters(date: u128, month: u128, year: u128) -> bool }