Is there a way to test the validity of a date other than
function test_date(y::Int, m::Int, d::Int)::Nullable{Date}
try
return Nullable{Date}(Date(y, m, d))
catch
return Nullable{Date}()
end
end
Seems like there should be a simple test
function?